Skip to content

Commit d82cd54

Browse files
committed
github-actions: windows+linux+macos workflow
1 parent 4daacf4 commit d82cd54

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/configure.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Upload config
2+
3+
on: [push]
4+
5+
jobs:
6+
build_and_test:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
matrix:
10+
os: [windows-latest, ubuntu-latest, macos-latest]
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v2
14+
- name: Set up Python
15+
uses: actions/setup-python@v2
16+
with:
17+
python-version: 3.9
18+
- uses: actions/setup-node@v2
19+
with:
20+
node-version: '14'
21+
- name: install dependencies and test
22+
shell: bash
23+
run: |
24+
npm install
25+
npm test

0 commit comments

Comments
 (0)