-
Notifications
You must be signed in to change notification settings - Fork 9
30 lines (30 loc) · 1.01 KB
/
test-lang-javascript.yml
File metadata and controls
30 lines (30 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: test-lang-javascript
on: [pull_request]
jobs:
lang-javascript-test:
name: "Lang Javascript test (ver: ${{ matrix.node-version }}) (os: ${{ matrix.os }})"
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x, 16.x, 18.x, 20.x, 22.x, 23.x]
os: [ubuntu-22.04, macos-26-intel]
include:
- os: ubuntu-22.04
python-version: "3.7.17"
- os: macos-26-intel
python-version: "3.12"
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: setup.py
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: make deps-dev
- run: make install-from-pkg-tgz
- run: make lang-javascript-test