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.
Add badges of Build and Test pipeline in Readme (#13)
* Extract build action from tests actions * Add badges of Build and Test pipeline in Readme * Replace action version 1.0.1 to v1 Co-authored-by: alexesprit <[email protected]>
- Loading branch information
1 parent
0cf69a9
commit c1317f1
Showing
3 changed files
with
67 additions
and
44 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
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: Tests | ||
|
||
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 master | ||
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 master | ||
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 master | ||
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