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 d356504 commit 654ca58Copy full SHA for 654ca58
.github/workflows/main.yml
@@ -0,0 +1,19 @@
1
+# .github/workflows/main.yml
2
+# Copy/pasted from https://angular.io/guide/testing#configure-project-for-github-actions
3
+name: CI Nest.js app through Github Actions
4
+on: push
5
+jobs:
6
+ unit-test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Use Node.js 16.x
11
+ uses: actions/setup-node@v1
12
+ with:
13
+ node-version: 16.x
14
+
15
+ - name: Setup
16
+ run: npm ci
17
18
+ - name: Test
19
+ run: npm test
0 commit comments