mirror of
https://github.com/koel/koel
synced 2025-02-03 07:03:30 +00:00
fix(build): broken e2e build flow
This commit is contained in:
parent
6b87deb2ee
commit
e6cd93afd1
1 changed files with 5 additions and 5 deletions
10
.github/workflows/e2e.yml
vendored
10
.github/workflows/e2e.yml
vendored
|
@ -20,14 +20,14 @@ jobs:
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: 14
|
node-version: 14
|
||||||
- name: Lint
|
- name: Yarn install and lint
|
||||||
run: yarn lint
|
run: |
|
||||||
|
yarn install
|
||||||
|
yarn lint
|
||||||
- name: Install submodule dependencies
|
- name: Install submodule dependencies
|
||||||
working-directory: ./resources/assets
|
working-directory: ./resources/assets
|
||||||
run: yarn install
|
run: yarn install
|
||||||
- name: Build the client application
|
- name: Build the client application
|
||||||
run: |
|
run: yarn build --no-progress
|
||||||
yarn install
|
|
||||||
yarn build --no-progress
|
|
||||||
- name: Run E2E tests
|
- name: Run E2E tests
|
||||||
run: yarn test:e2e:ci
|
run: yarn test:e2e:ci
|
||||||
|
|
Loading…
Reference in a new issue