This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
Bump @typescript-eslint/parser from 6.20.0 to 8.3.0 #236
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
check-latest: true | |
- name: Install | |
run: npm ci | |
- name: Test | |
run: npm run test | |
env: | |
CI: true |