From 022a7b95394e94a1203622f9f1e8995e5087a143 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Mon, 6 Jan 2025 12:32:47 +0100 Subject: [PATCH] ci: use setup action Builds upon work in https://github.com/bpmn-io/actions/pull/32 to be able to test (using chromium) on Ubuntu 24+. More details: https://github.com/bpmn-io/internal-docs/issues/1115 --- .github/workflows/CI.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 353a9462..b69e8abf 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,6 +18,8 @@ jobs: cache: 'npm' - name: Install dependencies run: npm ci + - name: Project setup + uses: bpmn-io/actions/setup@latest - name: Build examples run: npm run build - name: Lint examples