Adding step names

This commit is contained in:
Joe 2022-03-08 18:10:53 +00:00 committed by Dexter Edwards
parent 1fa63d2260
commit e7af88e875

View File

@ -25,8 +25,9 @@ jobs:
uses: actions/setup-node@v2 uses: actions/setup-node@v2
with: with:
node-version: 16 node-version: 16
- name: Install root dependencies - name: Install root dependencies and run tests
run: yarn install run: yarn install
- name: Build app and run tests - name: Build app
- run: npx nx affected:e2e --target=build --parallel=3 run: npx nx affected:e2e --target=build --parallel=3
- run: npx nx affected:e2e --target=test --parallel=2 --record --key ${{ secrets.CYPRESS_RECORD_KEY }} - name: Run E2E tests
run: npx nx affected:e2e --target=test --parallel=2 --record --key ${{ secrets.CYPRESS_RECORD_KEY }}