From 18a4201905b7192ac71e1c75f055814206d3d64e Mon Sep 17 00:00:00 2001 From: Aron Novak Date: Thu, 29 Jun 2023 09:39:41 +0200 Subject: [PATCH] test --- .github/workflows/test.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..bfe7ba9 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,25 @@ +name: Test + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the main branch + push: + branches: [ main ] + pull_request: + branches: [ main ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + tests: + name: Run Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Comment out nodejs, which causes slow builds + run: sed -i 's/nodejs/# nodejs/' flake.nix + + - uses: AronNovak/test-ihp-app@0.0.5