Skip to content

Bump acorn from 8.1.1 to 8.12.1 #31

Bump acorn from 8.1.1 to 8.12.1

Bump acorn from 8.1.1 to 8.12.1 #31

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['0.8', '0.10', '0.12', 4.x, 6.x, 8.x, 10.x, 12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm test
run: npm run tests-only
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: npm install
run: npm install
- name: npm run lint
run: npm run lint