Skip to content

Bump @typescript-eslint/parser from 6.21.0 to 8.11.0 #577

Bump @typescript-eslint/parser from 6.21.0 to 8.11.0

Bump @typescript-eslint/parser from 6.21.0 to 8.11.0 #577

Workflow file for this run

name: dedi-web code CI
on:
workflow_call:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
matrix:
os: ["ubuntu-latest"]
node-version: [16.x, 18.x, 20.x]
name: test/${{ matrix.node-version }}/${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
defaults:
run:
working-directory: .
steps:
- name: Checkout Source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install
run: npm ci
- name: lint
run: |
npm run lint
npx prettier . --check
- name: Tests
run: npm run test
- name: build
run: npm run build