Adding new scaffold to the react folder #35
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: repo-checks | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- task: Lint | |
allow_failures: false | |
command: yarn lerna run lint | |
- task: Test | |
allow_failures: false | |
command: yarn lerna run test | |
steps: | |
- uses: zendesk/checkout@v2 | |
- name: Use Node.js | |
uses: zendesk/setup-node@v3 | |
with: | |
node-version: 18.12.1 | |
- name: install packages | |
run: yarn install | |
- name: ${{ matrix.env.TASK }} | |
run: TASK=${{ matrix.env.TASK }} ${{ matrix.command }} |