Skip to content

chore(deps): update dependency @babel/parser to v7.25.6 #755

chore(deps): update dependency @babel/parser to v7.25.6

chore(deps): update dependency @babel/parser to v7.25.6 #755

Workflow file for this run

name: CI
on:
- push
- pull_request
permissions:
contents: read
env:
YARN_IGNORE_NODE: 1
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'yarn'
- run: yarn install --immutable
- run: yarn run lint
test:
strategy:
fail-fast: false
matrix:
node:
- '22'
- '20'
- '18'
- '16'
name: Node.js ${{ matrix.node }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- run: yarn install --immutable
- run: yarn run test
env:
ENABLE_COVERAGE: 1
- run: npx codecov