Skip to content

Commit dbe2698

Browse files
committed
tweak(ci): add testing & general cleanup
1 parent 2d28bbd commit dbe2698

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2
1+
version: 2s
22
updates:
33
- package-ecosystem: npm
44
directory: "/"

.github/workflows/build-docs.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
node-version: '14.x'
3131
- name: Install dependencies
3232
run: yarn --frozen-lockfile
33+
- name: Run Tests
34+
run: yarn test
3335
- name: Build Docs
3436
run: npm run docs:build
3537
- name: Inject CName into Build

.github/workflows/master-ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
node-version: '14.x'
2727
- name: Install dependencies
2828
run: yarn --frozen-lockfile
29+
- name: Run tests
30+
run: yarn test
2931
- name: Start test build
3032
run: npm run build
3133

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
node-version: '14.x'
3636
- name: Install dependencies
3737
run: yarn --frozen-lockfile
38+
- name: Run tests
39+
run: yarn test
3840
- name: Run build
3941
run: npm run build
4042
- name: Create Release
@@ -77,7 +79,8 @@ jobs:
7779
node-version: '14.x'
7880
- name: Install dependencies
7981
run: yarn --frozen-lockfile
80-
- run: echo "Tagged Version ${{ needs.tagged-release.outputs.VERSION_TAG }}"
82+
- name: Run tests
83+
run: yarn test
8184
- name: Publish NPM Package
8285
uses: JS-DevTools/npm-publish@v1
8386
with:

0 commit comments

Comments
 (0)