Skip to content

chore(deps): update all dependencies #842

chore(deps): update all dependencies

chore(deps): update all dependencies #842

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:
- 16
- 18
- 20
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Build, Lint and test
run: yarn run-s test lint
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true
- name: Codecov
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5