Skip to content

Merge pull request #21 from holomekc/dependabot/npm_and_yarn/types/uu… #67

Merge pull request #21 from holomekc/dependabot/npm_and_yarn/types/uu…

Merge pull request #21 from holomekc/dependabot/npm_and_yarn/types/uu… #67

Workflow file for this run

name: Test
# Run this job on all pushes and pull requests
# as well as tags with a semantic version
on:
push:
branches:
- "*"
pull_request: { }
workflow_dispatch:
# Cancel previous PR/branch runs when a new commit is pushed
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: install
run: npm ci
- name: lint
run: npm run lint
- name: test
run: npm run test