We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f0d06e commit 3948347Copy full SHA for 3948347
.github/workflows/test.yml
@@ -2,21 +2,22 @@ name: 'build-test'
2
on: # rebuild any PRs and main branch changes
3
pull_request:
4
push:
5
+ tags:
6
branches:
7
- main
- - 'releases/*'
8
+ - 'v[0-9]*'
9
10
jobs:
11
build: # make sure build/ci work properly
- runs-on: ubuntu-latest
12
+ runs-on: windows-latest
13
steps:
14
- uses: actions/checkout@v2
15
- run: |
16
npm install
17
18
npm run all
19
test: # make sure the action works on a clean machine without building
20
21
22
23
- uses: ./
0 commit comments