Update README.md #284
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: Build / Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Display Node versions | |
run: | | |
node --version | |
yarn --version | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Generate | |
run: make | |
- run: ls src | |
- name: Check Git Contains Generated | |
run: git add src && git diff --quiet HEAD -- src | |
- name: Test | |
run: make test | |
- name: Test Wild | |
run: make test_wild |