Skip to content

Create Release (#39) #16

Create Release (#39)

Create Release (#39) #16

Workflow file for this run

name: CI
on:
push:
branches: main
pull_request:
workflow_dispatch:
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm ci
- run: npm run lint