Test Please Ignore #34
Workflow file for this run
This file contains hidden or 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: Continuous Integration | |
| on: | |
| pull_request: | |
| jobs: | |
| lint-and-test: | |
| name: "Lint and Test" | |
| runs-on: large-spot | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Install Node | |
| uses: actions/setup-node@v4 | |
| - name: Install Dependencies | |
| run: yarn install | |
| - name: Run Linter | |
| run: yarn lint | |
| - name: Run Build | |
| run: yarn build | |
| - name: Run Unit Tests | |
| run: yarn test | |
| scan: | |
| needs: lint-and-test | |
| uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1 |