Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ jobs:
- name: Get Yarn Cache Directory
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
if: github.event_name != 'repository_dispatch'
- name: Cache node dependencies
uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
if: github.event_name != 'repository_dispatch'
- name: Install Package dependencies
run: yarn install
- name: Test
Expand Down Expand Up @@ -116,15 +114,13 @@ jobs:
- name: Get Yarn Cache Directory
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
if: github.event_name != 'repository_dispatch'
- name: Cache node dependencies
uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
if: github.event_name != 'repository_dispatch'
- name: Install Package dependencies
run: yarn install
- name: Build
Expand Down Expand Up @@ -174,7 +170,7 @@ jobs:
- name: Build
run: yarn build
- name: Upload
uses: technote-fork/action-gh-release@v1
uses: technote-space/action-gh-release@v2
with:
files: build/index.js
draft: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
schedule:
- cron: 0 17 * * 5
- cron: 0 3 * * 6
pull_request:
types: [opened, synchronize, reopened, closed]
repository_dispatch:
Expand Down