Fixes additional material daniel #106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Checks | |
on: | |
pull_request: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
name: verify buildable state | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v2 | |
- name: setup nodejs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: install dependencies | |
run: npm ci | |
- name: check formatting | |
run: npm run prettier:check | |
- name: build website | |
run: npm run build |