mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
fix(ci): use custom setup node action in backend e2e tests
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
de6faa6bd0
commit
4012e8625c
1 changed files with 6 additions and 12 deletions
18
.github/workflows/backend-e2e-tests.yml
vendored
18
.github/workflows/backend-e2e-tests.yml
vendored
|
@ -88,14 +88,11 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Use Node.js ${{ env.NODEJS_VERSION }}
|
||||
- name: Setup node
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
uses: actions/setup-node@v3
|
||||
uses: ./.github/actions/setup-node
|
||||
with:
|
||||
node-version: ${{ env.NODEJS_VERSION }}
|
||||
|
||||
- run: yarn install --immutable
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
NODE_VERSION: ${{ env.NODEJS_VERSION }}
|
||||
|
||||
- run: yarn run test:e2e
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
|
@ -120,14 +117,11 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Use Node.js ${{ env.NODEJS_VERSION }}
|
||||
- name: Setup node
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
uses: actions/setup-node@v3
|
||||
uses: ./.github/actions/setup-node
|
||||
with:
|
||||
node-version: ${{ env.NODEJS_VERSION }}
|
||||
|
||||
- run: yarn install --immutable
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
NODE_VERSION: ${{ env.NODEJS_VERSION }}
|
||||
|
||||
- run: yarn run test:e2e
|
||||
if: needs.changes.outputs.changed == 'true'
|
||||
|
|
Loading…
Reference in a new issue