From e1b20439810f24e18aa09d2feb8593ee7b7b0bb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Sun, 16 Aug 2026 10:48:26 +0200 Subject: [PATCH] add GH workgflow for running yarn test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- .github/workflows/tests.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 0000000..d8c7e8e --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,19 @@ +--- +name: tests +on: + pull_request: + branches: [master] +jobs: + build: + name: Yarn Test + runs-on: [self-hosted, Linux] + steps: + - uses: actions/checkout@v4 + + - name: Install dependecnies + shell: bash + run: nix develop --command yarn install + + - name: Run yarn test + shell: bash + run: nix develop --command yarn test