Skip to content

chore: bump dependencies #165

chore: bump dependencies

chore: bump dependencies #165

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/cache@v5
id: cache-node
with:
path: |
node_modules
example/node_modules
key: ${{ hashFiles('package.json', 'yarn.lock', 'example/package.json') }}
- run: corepack enable
- uses: actions/setup-node@v5
with:
package-manager-cache: false
node-version: 24
- run: yarn install
if: steps.cache-node.outputs.cache-hit != 'true'
- run: yarn lint
- run: yarn typecheck
- run: yarn test --coverage
- run: yarn prepare