Skip to content

Commit d8207e4

Browse files
authored
Fix/non reactive props (#6)
* chore(deps): update dev packages * chore(ci): use yarn * chore: update workspace settings * fix: watch reactive props * chore(ci): run workflow on every push and pull request * chore: bump package version
1 parent ca1f828 commit d8207e4

File tree

7 files changed

+4554
-13924
lines changed

7 files changed

+4554
-13924
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: Vue Stripe.js CI
22

3-
on:
4-
push:
5-
branches: [main]
6-
pull_request:
7-
branches: [main]
3+
on: [push, pull_request]
84

95
jobs:
106
build:
@@ -26,12 +22,12 @@ jobs:
2622
uses: actions/cache@v2
2723
with:
2824
path: ~/.npm
29-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
25+
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
3026
restore-keys: |
3127
${{ runner.os }}-node-
3228
3329
- name: Install dependencies
34-
run: npm i
30+
run: yarn
3531

3632
- name: Unit Tests
37-
run: npm run test
33+
run: yarn test

0 commit comments

Comments
 (0)