Skip to content

Commit 88ba37e

Browse files
committed
Fix warnings in action summary. Use new Yarn cache syntax. Update Cypress and remove unnecessary headless flag.
1 parent fef1ba9 commit 88ba37e

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
# https://github.com/actions/cache/blob/main/examples.md#node---yarn
6969
- name: Get Yarn cache directory
7070
id: yarn-cache-dir-path
71-
run: echo "::set-output name=dir::$(yarn cache dir)"
71+
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
7272
- name: Cache Yarn dependencies
7373
uses: actions/cache@v3
7474
with:
@@ -116,11 +116,10 @@ jobs:
116116
# https://github.com/cypress-io/github-action
117117
# (NOTE: to run these e2e tests locally, just use 'ng e2e')
118118
- name: Run e2e tests (integration tests)
119-
uses: cypress-io/github-action@v4
119+
uses: cypress-io/github-action@v5
120120
with:
121-
# Run tests in Chrome, headless mode
121+
# Run tests in Chrome, headless mode (default)
122122
browser: chrome
123-
headless: true
124123
# Start app before running tests (will be stopped automatically after tests finish)
125124
start: yarn run serve:ssr
126125
# Wait for backend & frontend to be available

0 commit comments

Comments
 (0)