Skip to content

Commit b7b06b2

Browse files
authored
Create manual.yml
1 parent d6d3877 commit b7b06b2

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/manual.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Test manual deployment
2+
3+
on:
4+
pull_request:
5+
branches: [new-website]
6+
paths: [website/**]
7+
8+
jobs:
9+
test-deploy:
10+
name: Test deployment
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-node@v2
15+
with:
16+
node-version: 14.x
17+
cache: npm
18+
- name: Test build
19+
working-directory: website
20+
run: |
21+
npm ci
22+
npm run build

0 commit comments

Comments
 (0)