Skip to content

build(deps-dev): bump @babel/eslint-parser from 7.25.9 to 7.26.5 #3262

build(deps-dev): bump @babel/eslint-parser from 7.25.9 to 7.26.5

build(deps-dev): bump @babel/eslint-parser from 7.25.9 to 7.26.5 #3262

Workflow file for this run

name: test
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 20]
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.1.0
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
env:
SKIP_BUILD: true
- name: Lint
run: npm run lint -- --no-fix
- name: Build
run: npm run build