We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81c9b83 commit 22ae565Copy full SHA for 22ae565
.github/workflows/unittests.yml
@@ -19,6 +19,5 @@ jobs:
19
uses: actions/setup-node@v1
20
with:
21
node-version: ${{ matrix.node-version }}
22
- - run: npm ci
23
- - run: npm run build --if-present
+ - run: make
24
- run: npm test
.gitignore
@@ -1,6 +1,5 @@
1
node_modules
2
npm-debug.log
3
.DS_Store
4
-package-lock.json
5
build/
6
Makefile
@@ -10,7 +10,7 @@ node_modules: package.json
10
npm install
11
12
build: tsconfig.json node_modules
13
- npm install --only=dev
+ NODE_ENV=build npm install
14
npm run build
15
16
.PHONY: test install clean build
0 commit comments