Skip to content

Update node versions in CI workflow #2

Update node versions in CI workflow

Update node versions in CI workflow #2

Workflow file for this run

name: 'CI'
on:
push:
branches:
- 'main'
permissions:
contents: read
actions: read
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
fail-fast: false
steps:
- name: Chekout code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run test