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 6499b50 commit 8228cfaCopy full SHA for 8228cfa
.github/workflows/main.yml
@@ -0,0 +1,26 @@
1
+name: Build and test angular-cli-ghpages
2
+
3
+on: [push]
4
5
+jobs:
6
+ build-and-deploy:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v2
12
13
+ - name: Use Node.js 10.x
14
+ uses: actions/setup-node@v1
15
+ with:
16
+ node-version: 10.x
17
18
+ - name: Prepare and deploy
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+ run: |
22
+ cd src
23
+ npm run build
24
+ npm run test
25
+ cd dist
26
+ sudo npm link
0 commit comments