Skip to content

Commit

Permalink
fix: Buttons style not updated on entity state #113 (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
regevbr committed Apr 6, 2023
1 parent 6f12032 commit 333ad58
Show file tree
Hide file tree
Showing 5 changed files with 2,004 additions and 1,691 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Expand Up @@ -14,14 +14,14 @@ jobs:
- name: Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
- name: Cahce dependencies
uses: actions/cache@v3
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node-16.x-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.OS }}-node-18.x-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-16.x
${{ runner.OS }}-node-18.x
${{ runner.OS }}-
- name: Install dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -15,14 +15,14 @@ jobs:
- name: Node
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
- name: Cahce dependencies
uses: actions/cache@v3
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node-16.x-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.OS }}-node-18.x-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-16.x
${{ runner.OS }}-node-18.x
${{ runner.OS }}-
- name: Install dependencies
run: |
Expand Down

0 comments on commit 333ad58

Please sign in to comment.