mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 22:22:34 +03:00
fix(node-swc): Fix glibc compatibility issue (#1431)
This commit is contained in:
parent
59bd00d841
commit
6ece76367b
6
.github/workflows/publish-node.yml
vendored
6
.github/workflows/publish-node.yml
vendored
@ -15,7 +15,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
os: [ubuntu-18.04, macos-latest, windows-latest]
|
||||
|
||||
name: Build - ${{ matrix.os }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
@ -51,6 +51,10 @@ jobs:
|
||||
- name: Test bindings
|
||||
run: npm test
|
||||
|
||||
- name: Test in lts docker
|
||||
if: matrix.os == 'ubuntu-18.04'
|
||||
run: docker run --rm -v $(pwd):/swc -w /swc node:10-slim sh -c "yarn test"
|
||||
|
||||
build-windows-i686:
|
||||
name: stable - windows-i686 - node@14
|
||||
runs-on: windows-latest
|
||||
|
Loading…
Reference in New Issue
Block a user