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 eb672b8 commit af61e8eCopy full SHA for af61e8e
.github/workflows/test-deploy.yml
@@ -0,0 +1,25 @@
1
+name: Test deployment
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ "dev" ]
6
+ # Review gh actions docs if you want to further define triggers, paths, etc
7
+ # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
8
9
+jobs:
10
+ test-deploy:
11
+ name: Test deployment
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
+ - uses: actions/setup-node@v4
18
19
+ node-version: 18
20
+ cache: npm
21
22
+ - name: Install dependencies
23
+ run: npm install
24
+ - name: Test build website
25
+ run: npm run build
0 commit comments