Skip to content

Commit

Permalink
Update ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
bzvnr committed Apr 22, 2023
1 parent b69c08c commit 9a77f12
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# setup and use a GitHub runner to run unit tests
name: Jest Tests
name: Jest Unit Tests

on:
[push]
[pull_request]
# [merge]
[pull_request, push]:
paths-ignore:
- 'dist/**'
- '.editorconfig'
- '.gitignore'
- 'index.html'
- 'LICENSE'
- 'README.md'

jobs:
tests:
Expand All @@ -16,7 +21,8 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: 'Use Node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm clean-install
Expand Down

0 comments on commit 9a77f12

Please sign in to comment.