Skip to content

chore(deps): update all dependencies #1164

chore(deps): update all dependencies

chore(deps): update all dependencies #1164

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:
- 14
- 16
- 18
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Link Yarn global binaries into PATH
run: echo "$(yarn global bin)" >> $GITHUB_PATH
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Build, Lint and Test
run: |
yarn build
yarn lint
# yarn test
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true