Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): add workflows #7

Merged
merged 4 commits into from
Feb 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build, Lint, Test

on:
push:
branches:
- main
pull_request:

concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true

jobs:
build-lint-test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
# 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
uses: nick-fields/[email protected]
with:
max_attempts: 5
timeout_minutes: 15
retry_on: error
command: npm run build:ws

- name: Lint
run: |
npm run lint:ci:ws

- name: Test
run: |
npm run test:ws

check-licenses:
uses: lightbasenl/platforms/.github/workflows/lib-license-checker.yml@main
Loading