Skip to content

chore: bump version #183

chore: bump version

chore: bump version #183

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
node-build:
name: Install, lint, build and test
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
- run: yarn install
- run: yarn lint
- run: yarn build