Skip to content
This repository was archived by the owner on May 23, 2025. It is now read-only.

Bump @babel/eslint-parser from 7.19.1 to 7.25.7 #1222

Bump @babel/eslint-parser from 7.19.1 to 7.25.7

Bump @babel/eslint-parser from 7.19.1 to 7.25.7 #1222

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: Use node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test