Skip to content

[Snyk] Security upgrade eslint-plugin-import from 2.22.1 to 2.25.0 #99

[Snyk] Security upgrade eslint-plugin-import from 2.22.1 to 2.25.0

[Snyk] Security upgrade eslint-plugin-import from 2.22.1 to 2.25.0 #99

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
fail-fast: false
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node dependencies
uses: actions/cache@v2.1.4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test