Skip to content
Draft
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
11 changes: 11 additions & 0 deletions .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,17 @@ env:
dir: '../'
conf: '../../conf.json.example'
jobs:
check-double-run:
runs-on: ubuntu-latest
steps:
- uses: rlespinasse/[email protected]
- name: Cancel this build
uses: knoxfighter/cancel-multi-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
if: github.event_name == 'pull_request'
test-npm:
needs: [ check-double-run ]
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
Expand All @@ -25,6 +35,7 @@ jobs:
- uses: actions/setup-node@v1
- run: make app/bundle
test-go:
needs: [check-double-run]
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
Expand Down