From a37933a607c6fb73fee402507f4d923da152e7a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zg=C3=BCr=20Akg=C3=BCn?= Date: Wed, 18 Oct 2023 16:40:10 +0100 Subject: [PATCH] Create test.yml --- .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..662b0ad --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,25 @@ +name: Deploy to Github Pages + +on: + workflow_dispatch: # can be triggered manually + pull_request: # and for PRs + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - uses: actions/setup-node@v2 + with: + node-version: 16 + cache: npm + + - name: Build + run: | + npm ci + npm run build + npm run export + # creates a .nojekyll file in the out directory to tell GitHub Pages not to treat the site as a Jekyll project. + touch out/.nojekyll