Skip to content

refactor: project toolkit #56

refactor: project toolkit

refactor: project toolkit #56

Workflow file for this run

name: ci
on:
push:
branches: ["*"]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm i
- run: npm run test
env:
CI: true