This repository has been archived by the owner on Apr 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Just download the zip of Master branch if v_version is equal to master. * WORKFLOW_COMMIT - update dist/index.js [skip ci] * Try to build using make bash command * Add test for master build * Change subpath if master * Update README.md Co-authored-by: alexesprit <alex.esprit@gmail.com>
- Loading branch information
1 parent
c1317f1
commit 3c43c7f
Showing
5 changed files
with
82 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Test Latest | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'dist/**.js' | ||
pull_request: | ||
paths: | ||
- 'dist/**.js' | ||
|
||
jobs: | ||
test-ubuntu: | ||
name: Test with ubuntu | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up V version latest | ||
uses: ./ | ||
with: | ||
v-version: latest | ||
id: v | ||
|
||
- name: Test V is present | ||
run: v version | ||
|
||
test-macos: | ||
name: Test on MacOS | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up V version latest | ||
uses: ./ | ||
with: | ||
v-version: latest | ||
id: v | ||
|
||
- name: Test V is present | ||
run: v version | ||
|
||
test-windows: | ||
name: Test on Windows | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up V version latest | ||
uses: ./ | ||
with: | ||
v-version: latest | ||
id: v | ||
|
||
- name: Test V is present | ||
run: v version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters