[Test PR] Fix: GitHub RSA key was changed and prevented this action from working (#114) #311
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: Test build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Test build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Ensure build was committed (necessary for Github Actions) | |
run: "[[ -z $(git status -s dist ':^dist/src') ]]" | |
- name: "[Test] Unit tests" | |
run: yarn test |