Skip to content

Bump @thoughtbot/eslint-config from 1.0.2 to 1.0.3 #48

Bump @thoughtbot/eslint-config from 1.0.2 to 1.0.3

Bump @thoughtbot/eslint-config from 1.0.2 to 1.0.3 #48

Workflow file for this run

---
name: Test & Lint
on:
push:
branches:
- 'main'
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
- run: npm ci
- run: npm test
lint-css:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run lint:css
lint-js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
- run: npm ci
- run: npm run lint:js