Skip to content

chore: Update dependency yn to v5 #337

chore: Update dependency yn to v5

chore: Update dependency yn to v5 #337

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint:all
- name: Compile TypeScript
run: yarn tsc:full
- name: Run Tests
run: yarn test:all
- name: Run Audit
run: yarn audit --level high || true