Skip to content

fix(deps): update all dependencies #1073

fix(deps): update all dependencies

fix(deps): update all dependencies #1073

Workflow file for this run

name: CI
on:
- push
- pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Build and Lint with Node.js ${{ matrix.node }} on ${{ matrix.os }}
strategy:
matrix:
node:
- 20
- 22
- 24
os:
- ubuntu-latest
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn --immutable
- name: Build and Lint
run: |
yarn build
yarn run-p docs lint typecov
env:
PARSER_NO_WATCH: true
RAW_TERMS_URL: ${{ vars.RAW_TERMS_URL }}