Skip to content

Bump eslint from 8.45.0 to 8.46.0 #2000

Bump eslint from 8.45.0 to 8.46.0

Bump eslint from 8.45.0 to 8.46.0 #2000

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Configure git
env:
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: git config --global url."https://${TOKEN}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Download and install supplementary addons and test data
run: ./scripts/ci.sh
- name: Run tests
run: npm test
env:
CI: true
- uses: actions/upload-artifact@v3
with:
name: test-screenshots
path: screenshots/
build-quiet:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install --production
- run: npm run test-older
env:
CI: true