Display information on screw inserts #57
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: Tests | |
on: [push] | |
jobs: | |
runtime-test: | |
name: Check that things compile | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: DeLaGuardo/[email protected] | |
with: | |
cli: 1.10.1.693 | |
lein: 2.9.1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 19 | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Compile code | |
run: make all | |
- name: Build site | |
run: npm run build | |
- name: Test code | |
run: npm test |