From b7787933dbe1b28204bc6afa828f804d0a085991 Mon Sep 17 00:00:00 2001 From: Ana Custura Date: Wed, 14 Jan 2026 15:11:50 +0000 Subject: [PATCH] Add CI file --- .github/workflows/ci.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..ab04a49 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,19 @@ +name: ci +on: + push: + branches: + - main + pull_request: + branches: + - main +jobs: + build_and_publish: + runs-on: docker + container: + image: ghcr.io/catthehacker/ubuntu:runner-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + - run: npm install + - run: export NODE_OPTIONS=--openssl-legacy-provider + - run: npm build