Skip to content

Bump @jgarber/eslint-config from 1.1.0 to 1.1.1 (#5) #7

Bump @jgarber/eslint-config from 1.1.0 to 1.1.1 (#5)

Bump @jgarber/eslint-config from 1.1.0 to 1.1.1 (#5) #7

Workflow file for this run

name: CI
on: push
jobs:
lint:
name: Lint files
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: npm
- run: npm ci
- run: npm run lint
test:
name: Test files
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: npm
- run: npm ci
- run: npm test