Skip to content

chaos: fix changeset config #75

chaos: fix changeset config

chaos: fix changeset config #75

Workflow file for this run

name: NodeCI
on: [push]
jobs:
test:
name: Test on node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
id: setup_node
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Unit Test
run: npm test run