Skip to content

Bump eslint-plugin-import from 2.27.5 to 2.28.0 #332

Bump eslint-plugin-import from 2.27.5 to 2.28.0

Bump eslint-plugin-import from 2.27.5 to 2.28.0 #332

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Testing
on:
push:
pull_request:
types: [opened, edited, reopened, synchronize]
jobs:
Testing:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: "16.0.0"
- name: Install dependencies
run: npm ci
- name: Lint code
run: npm run lint
- name: Run unit tests
run: npm test