Skip to content

Commit e5bffa1

Browse files
authored
🌹 Update CI setup (#169)
1 parent 79b12cf commit e5bffa1

File tree

1 file changed

+4
-16
lines changed

1 file changed

+4
-16
lines changed

‎.github/workflows/test.yml‎

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,35 +14,23 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515

1616
steps:
17-
- uses: actions/checkout@v1
17+
- uses: actions/checkout@v2
1818

1919
- name: Install libasound2-dev
2020
run: sudo apt-get install -y libasound2-dev
2121
if: matrix.os == 'ubuntu-latest'
2222

23-
- name: Setup MSBuild.exe
24-
uses: warrenbuckley/Setup-MSBuild@v1
23+
- name: Add msbuild to PATH
24+
uses: microsoft/setup-msbuild@v1
2525
if: matrix.os == 'windows-latest'
2626

2727
- name: Use Node.js ${{ matrix.node-version }}
28-
uses: actions/setup-node@v1
28+
uses: actions/setup-node@v2
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131

32-
- name: Print Node.js Version
33-
run: node --version
34-
3532
- name: Install Dependencies
3633
run: npm install
37-
env:
38-
CI: true
39-
40-
- name: Run "build" step
41-
run: npm run build --if-present
42-
env:
43-
CI: true
4434

4535
- name: Run tests
4636
run: npm test
47-
env:
48-
CI: true

0 commit comments

Comments
 (0)