Skip to content

chore(deps): lock file maintenance #110

chore(deps): lock file maintenance

chore(deps): lock file maintenance #110

Workflow file for this run

name: Checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn
- run: yarn build
- run: yarn prettier:check
- run: yarn test --maxWorkers 2