-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dirk de Visser <[email protected]>
- Loading branch information
Showing
1 changed file
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
build_lint_test: | ||
build-lint-test: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
steps: | ||
|
@@ -24,20 +24,24 @@ jobs: | |
# Can't cache, since we don't commit the lockfile | ||
node-version: 20 | ||
|
||
- name: Install dependencies | ||
run: | | ||
npm install | ||
# Execute build multiple times if it fails. We haven't correctly set up correct composed package builds, so initial builds may fail | ||
- name: "Build" | ||
- name: Build | ||
uses: nick-fields/[email protected] | ||
with: | ||
max_attempts: 5 | ||
timeout_minutes: 15 | ||
retry_on: error | ||
command: npm run build:ws | ||
|
||
- name: "Lint" | ||
- name: Lint | ||
run: | | ||
npm run lint:ci:ws | ||
- name: "Test" | ||
- name: Test | ||
run: | | ||
npm run test:ws | ||
|