Skip to content

Merge pull request #6 from henrikjonhed/validate_responses #18

Merge pull request #6 from henrikjonhed/validate_responses

Merge pull request #6 from henrikjonhed/validate_responses #18

Workflow file for this run

name: Build and test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "npm"
- run: npm i
- run: npm run build
- run: npm run format-check
- run: npm run lint
- run: npm test