Skip to content

Run Prettier after updating projects.json (#442) #512

Run Prettier after updating projects.json (#442)

Run Prettier after updating projects.json (#442) #512

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: "package.json"
- run: npm ci
- run: npm run lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: "package.json"
- run: npm ci
- run: npm run test