From 3dc20a3bc5a5912dc58e3d3938ed8359c5e2fb92 Mon Sep 17 00:00:00 2001 From: Jean-Yves Moyen Date: Thu, 8 Jan 2026 14:22:48 +0100 Subject: [PATCH 1/3] Add basic CI workflow --- .github/workflows/integrate.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/integrate.yml diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml new file mode 100644 index 0000000..c3b4db7 --- /dev/null +++ b/.github/workflows/integrate.yml @@ -0,0 +1,32 @@ +name: Integrate + +permissions: + contents: read + +on: + push: + branches: + - main + pull_request: + branches: + - "*" + merge_group: + types: [checks_requested] + +concurrency: + group: integrate-${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + - uses: actions/setup-node@v5 + with: + node-version: 22 + cache: yarn + - run: yarn install --immutable + - run: yarn build + - run: yarn test From 3a643dc42d3ea29dd1f1664e617a06e91ba8e26e Mon Sep 17 00:00:00 2001 From: Jean-Yves Moyen Date: Thu, 8 Jan 2026 16:42:55 +0100 Subject: [PATCH 2/3] Update Node version --- .github/workflows/integrate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index c3b4db7..e9908a8 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-node@v5 with: - node-version: 22 + node-version: 24 cache: yarn - run: yarn install --immutable - run: yarn build From dd2200b910c5c2437a300a45778c0a4d64ede215 Mon Sep 17 00:00:00 2001 From: Jean-Yves Moyen Date: Fri, 9 Jan 2026 09:21:33 +0100 Subject: [PATCH 3/3] Update actions version --- .github/workflows/integrate.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index e9908a8..736a1f6 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -22,8 +22,8 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 - - uses: actions/setup-node@v5 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: node-version: 24 cache: yarn