Skip to content

Commit

Permalink
Fix/non reactive props (#6)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
softbeehive authored May 13, 2022
1 parent ca1f828 commit d8207e4
Show file tree
Hide file tree
Showing 7 changed files with 4,554 additions and 13,924 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Vue Stripe.js CI

on:
push:
branches: [main]
pull_request:
branches: [main]
on: [push, pull_request]

jobs:
build:
Expand All @@ -26,12 +22,12 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm i
run: yarn

- name: Unit Tests
run: npm run test
run: yarn test
Loading

0 comments on commit d8207e4

Please sign in to comment.