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 c70416b commit fba3649Copy full SHA for fba3649
.github/workflows/npm.yml
@@ -0,0 +1,25 @@
1
+# GitHub Actions docs
2
+# https://help.github.com/en/articles/about-github-actions
3
+# https://help.github.com/en/articles/workflow-syntax-for-github-actions
4
+name: Angular CI with npm
5
+
6
+on:
7
+ push:
8
+ branches: [ master ]
9
+ pull_request:
10
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v1
18
+ - name: Use Node.js 12.8
19
+ uses: actions/setup-node@v1
20
+ with:
21
+ node-version: 12.8
22
+ - name: Install dependencies
23
+ run: npm install
24
+ - name: Build
25
+ run: npm run build -- --prod
0 commit comments