Skip to content

yarn upgrade

yarn upgrade #3

Workflow file for this run

name: check
on:
push:
branches: [master]
pull_request:
branches: ['*']
jobs:
test:
runs-on: ubuntu-latest
# runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x]
# os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn audit
- run: yarn check
- run: yarn lint
- run: yarn test