Files
TechRadarAJR/.github/workflows/main.yml
2022-05-13 19:42:27 +02:00

20 lines
407 B
YAML

name: Test AOE Technology Radar
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- run: yarn
- run: yarn lint
- run: yarn build
- run: git diff --quiet || (echo 'workspace is dirty after rebuilding' ; git diff ; exit 1)