Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/curttimson/hugo-theme-massively.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCurtis Timson <curt@live.co.uk>2022-03-31 14:15:31 +0300
committerGitHub <noreply@github.com>2022-03-31 14:15:31 +0300
commit29095f53dc3a94a6b7ea4dca77bfd01e7e1243fb (patch)
tree62d6cfda2fddce22fcdf48e39b4796637f7ced0a /.github
parentfc9a5d2b5b8ff6b92eb14846ee840940b850e5e7 (diff)
✅ Cypress e2e tests (#103)
* ✅ Cypress e2e tests * update posts * add post test * use base * revert publish change * add e2e workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/e2e.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
new file mode 100644
index 0000000..28eb500
--- /dev/null
+++ b/.github/workflows/e2e.yml
@@ -0,0 +1,25 @@
+name: e2e tests
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [16.x]
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v2
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: 'npm'
+ - run: npm ci
+ - run: npm run e2e:headless \ No newline at end of file