Skip to content

Adding new scaffold to the react folder #35

Adding new scaffold to the react folder

Adding new scaffold to the react folder #35

Workflow file for this run

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 }}