Skip to content

chore(deps): update dependency typescript to ^5.6.2 #410

chore(deps): update dependency typescript to ^5.6.2

chore(deps): update dependency typescript to ^5.6.2 #410

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
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
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