Compare commits

...

3 Commits

Author SHA1 Message Date
Alexei Lozovsky ac2ceb2811 show me the env 2021-03-07 13:51:48 +09:00
Alexei Lozovsky cdfca13739 test only this branch 2021-03-07 13:51:40 +09:00
Ewout ter Hoeven aa2e60900e CI: Cleanup, checkout v2 (#24)
- Remove the fail-fast: tag, it's non-functional since a matrix isn't used anymore
- Update to the faster checkout v2
2021-02-01 14:01:31 +02:00
2 changed files with 12 additions and 8 deletions
+10 -4
View File
@@ -6,6 +6,7 @@ on:
branches:
- master
- release/*
- wip/path-test
schedule:
- cron: '0 6 * * *'
@@ -13,15 +14,19 @@ jobs:
test:
name: default
runs-on: windows-latest
strategy:
fail-fast: false
steps:
- name: Check out source code
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Download Internet
run: npm install
- name: What's in the env?
shell: cmd
run: set
- name: Enable Developer Command Prompt
uses: ./
- name: What's in the env now?
shell: cmd
run: set
- name: Compile and run some C code
shell: cmd
run: |
@@ -29,9 +34,10 @@ jobs:
hello.exe
audit:
name: npm audit
if: false
runs-on: windows-latest
steps:
- name: Check out source code
uses: actions/checkout@v1
uses: actions/checkout@v2
- run: npm install
- run: npm audit --audit-level=moderate
+2 -4
View File
@@ -11,13 +11,11 @@ jobs:
test:
name: release
runs-on: windows-latest
strategy:
fail-fast: false
steps:
- name: Setup Developer Command Prompt
uses: ilammy/msvc-dev-cmd@v1
- name: Check out source code
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Compile and run some C code
shell: cmd
run: |
@@ -28,5 +26,5 @@ jobs:
runs-on: windows-latest
steps:
- name: Check out source code
uses: actions/checkout@v1
uses: actions/checkout@v2
- run: npm audit --audit-level=moderate