From 430c977eab600ce27108645f0099891b2b9e2029 Mon Sep 17 00:00:00 2001 From: mao-sz <122839503+mao-sz@users.noreply.github.com> Date: Thu, 4 Sep 2025 23:20:56 +0100 Subject: [PATCH 1/2] Add GH workflow for solution tests --- .github/workflows/tests.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 00000000000..788dfdad4bb --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,15 @@ +name: Tests +on: + pull_request: + paths: + - '**/solution/*.js' + +jobs: + tests: + name: Run solution tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + - run: npm install + - run: npm run test -- **/solution From f6dd0aed77b5d11fdb59fd201e202f4e60c0423f Mon Sep 17 00:00:00 2001 From: mao-sz <122839503+mao-sz@users.noreply.github.com> Date: Thu, 4 Sep 2025 23:21:28 +0100 Subject: [PATCH 2/2] Remove CircleCI config Workflows migrated to GH actions --- .circleci/config.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 14716683aba..00000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: 2.1 - -orbs: - node: circleci/node@5.1.0 - -jobs: - test-solutions: - executor: node/default - steps: - - checkout - - node/install-packages: - pkg-manager: npm - - run: - command: npm run test solution - name: Run tests in **/solution/*.spec.js - -workflows: - test-solutions: - jobs: - - test-solutions