Skip to content

Bump dependencies

Bump dependencies #762

Workflow file for this run

name: Build
on:
push:
branches: [v0.3.x]
pull_request:
branches: [v0.3.x]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
cache-dependency-path: yarn.lock
- run: yarn install && npm test -- --bail --ci
- uses: codecov/codecov-action@v3
- run: npm run build && npm publish --dry-run --tag v0.3-latest