Skip to content

chore(deps): update all dependencies #811

chore(deps): update all dependencies

chore(deps): update all dependencies #811

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
ci:
name: Lint and Test with Node.js ${{ matrix.node }}
strategy:
matrix:
node:
- 18
- 20
- 22
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn --immutable
- name: Build and Lint
run: yarn run-s build lint
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true