Skip to content

Add a script to automate building the CHANGELOG (#56) #27

Add a script to automate building the CHANGELOG (#56)

Add a script to automate building the CHANGELOG (#56) #27

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