Skip to content

Bump eslint-plugin-import from 2.29.1 to 2.30.0 #455

Bump eslint-plugin-import from 2.29.1 to 2.30.0

Bump eslint-plugin-import from 2.29.1 to 2.30.0 #455

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: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run build --if-present
# there are no real tests at the moment
#- run: npm run test:coverage
- run: npm run lint