fix(node-swc): Fix glibc compatibility issue (#1431)

This commit is contained in:
LongYinan 2021-02-24 00:53:36 +08:00 committed by GitHub
parent 59bd00d841
commit 6ece76367b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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