We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d670f7 commit 09c5b82Copy full SHA for 09c5b82
.github/workflows/test-deploy.yml
@@ -0,0 +1,27 @@
1
+name: Test deployment
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ push:
8
+ branches-ignore:
9
+ - production
10
+ # Review gh actions docs if you want to further define triggers, paths, etc
11
+ # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
12
13
+jobs:
14
+ test-deploy:
15
+ name: Test deployment
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - uses: actions/setup-node@v3
20
+ with:
21
+ node-version: 18
22
+ cache: yarn
23
24
+ - name: Install dependencies
25
+ run: yarn install --frozen-lockfile
26
+ - name: Test build website
27
+ run: yarn build
0 commit comments