From 6b60fbeef645865e742cc8e83fd839f6558d6c00 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Mon, 6 Jan 2025 13:57:43 +0100 Subject: [PATCH] ci: use setup action --- .github/workflows/CI.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 912b57e8..b69e8abf 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,20 +18,8 @@ jobs: cache: 'npm' - name: Install dependencies run: npm ci - - name: Fix chromium sandbox - if: runner.os == 'Linux' - run: | - cat | sudo tee /etc/apparmor.d/chrome-puppeteer <, - include - - profile chrome /@{HOME}/.cache/puppeteer/chrome/*/chrome-linux64/chrome flags=(unconfined) { - userns, - - include if exists - } - EOF - sudo service apparmor reload + - name: Project setup + uses: bpmn-io/actions/setup@latest - name: Build examples run: npm run build - name: Lint examples