Skip to content

feat: update node.js versions #539

feat: update node.js versions

feat: update node.js versions #539

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18
- 20
- 21
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install
- run: yarn build
- run: yarn test