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 e59fa5a commit 50b380fCopy full SHA for 50b380f
.github/workflows/github-actions.yaml renamed to .github/workflows/build-and-release.yaml
@@ -1,4 +1,5 @@
1
name: build and release ng-snippets library
2
+
3
on:
4
push:
5
branches:
@@ -9,15 +10,22 @@ jobs:
9
10
steps:
11
- name: Check out repository code
12
uses: actions/checkout@v3
13
14
- name: Set up your GitHub Actions workflow with a specific version of NodeJS
15
uses: actions/setup-node@v3
16
with:
17
node-version: 14
18
cache: npm
19
20
- name: Install dependencies
21
run: npm ci
- - name: Build
22
23
+ - name: Run tests
24
+ run: npm run test:lib
25
26
+ - name: Build library
27
run: npm run build:lib
28
29
- name: Semantic release
30
run: npm run semantic-release
31
env:
0 commit comments