Skip to content

Bump eslint from 8.52.0 to 8.54.0 #301

Bump eslint from 8.52.0 to 8.54.0

Bump eslint from 8.52.0 to 8.54.0 #301

Workflow file for this run

name: CI tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- name: Use cache
uses: actions/cache@v2
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Select Node.js version
uses: actions/setup-node@v1
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test >> $GITHUB_STEP_SUMMARY