Skip to content

Commit

Permalink
fix(ci/cd)
Browse files Browse the repository at this point in the history
  • Loading branch information
RaresAil committed Jan 26, 2021
1 parent b4e74a2 commit 9a9c802
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g yarn
- run: yarn create react-app . --template typescript-mvvm
- run: yarn lint
- run: yarn test:ci
- name: Install Yarn
run: npm install -g yarn
- name: Create React App using the Template
run: yarn create react-app test --template typescript-mvvm
- name: Lint
working-directory: ./test
run: yarn lint
- name: Test
working-directory: ./test
run: yarn test:ci

0 comments on commit 9a9c802

Please sign in to comment.