Skip to content

chore(deps): update dependency prettier to ^3.3.3 #622

chore(deps): update dependency prettier to ^3.3.3

chore(deps): update dependency prettier to ^3.3.3 #622

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
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn --frozen-lockfile --ignore-engines
- name: Build, Lint and Test
run: |
yarn build
yarn run-p lint test typecov
env:
EFF_NO_LINK_RULES: true
PARSER_NO_WATCH: true