Skip to content

Bump @typescript-eslint/parser from 6.21.0 to 7.14.1 #4646

Bump @typescript-eslint/parser from 6.21.0 to 7.14.1

Bump @typescript-eslint/parser from 6.21.0 to 7.14.1 #4646

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Test
env:
CI: true
run: npm test -- --ci --coverage
- name: Report
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
env:
COVERALLS_GIT_BRANCH: ${{ github.ref }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: npm run coveralls
- name: Build
run: npm run build
- name: Deploy
if: github.ref == 'refs/heads/master' && github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run release