Skip to content

Commit

Permalink
chore: install dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Dirk de Visser <[email protected]>
  • Loading branch information
dirkdev98 committed Feb 9, 2024
1 parent fb7314a commit 8390bbc
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

jobs:
build_lint_test:
build-lint-test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
Expand All @@ -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
Expand Down

0 comments on commit 8390bbc

Please sign in to comment.