Skip to content

Bump @typescript-eslint/parser from 7.5.0 to 7.6.0 #1141

Bump @typescript-eslint/parser from 7.5.0 to 7.6.0

Bump @typescript-eslint/parser from 7.5.0 to 7.6.0 #1141

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
node-version: [20.x]
experimental: [false]
include:
- node: 21.x
experimental: true
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: install dependencies
run: npm ci
- name: build
run: npm run build --if-present
- name: test
run: npm test
- name: Code coverage reporting
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./js-coverage/lcov.info