Skip to content

misc: update dependencies #45

misc: update dependencies

misc: update dependencies #45

Workflow file for this run

name: Test branch or PR
on:
pull_request:
branches:
- master
jobs:
testlint:
name: Test and Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.1
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6.1.0
with:
node-version: v24.12.0
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint code
run: yarn lint
- name: Run tests
run: yarn test