2020-06-13 17:09:45 +03:00
|
|
|
name: Integration tests
|
2020-05-28 16:23:53 +03:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_INCREMENTAL: 0
|
|
|
|
|
|
|
|
jobs:
|
2021-01-24 16:02:44 +03:00
|
|
|
publish-test:
|
|
|
|
name: node-api
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-03-25 19:22:09 +03:00
|
|
|
# We explicitly do this to cache properly.
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
|
2021-01-24 16:02:44 +03:00
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: 14
|
|
|
|
|
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/
|
|
|
|
**/target/
|
|
|
|
key: ${{ runner.os }}-node-api-test
|
|
|
|
|
|
|
|
- name: Set platform name
|
|
|
|
run: |
|
|
|
|
export NODE_PLATFORM_NAME=$(node -e "console.log(require('os').platform())")
|
|
|
|
echo "PLATFORM_NAME=$NODE_PLATFORM_NAME" >> $GITHUB_ENV
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Prepare
|
|
|
|
run: |
|
|
|
|
npm config set prefix ~/npm
|
|
|
|
npm i
|
|
|
|
export PATH="$PATH:$HOME/npm/bin"
|
|
|
|
|
|
|
|
npm run build:dev
|
2021-07-05 17:49:24 +03:00
|
|
|
npm test
|
2021-01-24 16:02:44 +03:00
|
|
|
|
2020-05-28 16:23:53 +03:00
|
|
|
integration-test:
|
2021-01-24 16:02:44 +03:00
|
|
|
name: swc-cli
|
2020-05-28 16:23:53 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-01-11 13:39:17 +03:00
|
|
|
- uses: actions/setup-node@v2
|
2020-05-28 16:23:53 +03:00
|
|
|
with:
|
2021-01-11 13:39:17 +03:00
|
|
|
node-version: 14
|
2020-05-28 16:23:53 +03:00
|
|
|
|
2020-08-03 19:33:23 +03:00
|
|
|
- name: Cache
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/
|
|
|
|
**/target/
|
|
|
|
key: ${{ runner.os }}-cargo-integration
|
|
|
|
|
2020-08-30 09:29:42 +03:00
|
|
|
- name: Set platform name
|
|
|
|
run: |
|
|
|
|
export NODE_PLATFORM_NAME=$(node -e "console.log(require('os').platform())")
|
2020-11-22 12:14:22 +03:00
|
|
|
echo "PLATFORM_NAME=$NODE_PLATFORM_NAME" >> $GITHUB_ENV
|
2020-08-30 09:29:42 +03:00
|
|
|
shell: bash
|
|
|
|
|
2020-05-28 16:23:53 +03:00
|
|
|
- name: Prepare
|
|
|
|
run: |
|
|
|
|
npm config set prefix ~/npm
|
|
|
|
npm i
|
|
|
|
export PATH="$PATH:$HOME/npm/bin"
|
2020-08-30 09:29:42 +03:00
|
|
|
|
2020-09-18 20:07:28 +03:00
|
|
|
npm run build:dev
|
2021-01-24 17:46:23 +03:00
|
|
|
npm i -g @swc/cli@0.1.33
|
2020-05-28 16:23:53 +03:00
|
|
|
npm link
|
|
|
|
|
2020-07-01 10:31:55 +03:00
|
|
|
- name: (swc) three.js
|
2020-05-28 16:23:53 +03:00
|
|
|
run: |
|
|
|
|
export PATH="$PATH:$HOME/npm/bin"
|
2021-06-24 11:01:21 +03:00
|
|
|
mkdir -p tests/integration/three-js
|
2020-05-28 16:23:53 +03:00
|
|
|
npm i -g qunit failonlyreporter
|
|
|
|
|
|
|
|
# Download three.js
|
2021-06-24 11:01:21 +03:00
|
|
|
git clone --depth 1 https://github.com/mrdoob/three.js.git -b r117 tests/integration/three-js/repo
|
2020-05-28 16:23:53 +03:00
|
|
|
|
2021-06-24 11:01:21 +03:00
|
|
|
swc --sync tests/integration/three-js/repo/ -d tests/integration/three-js/build/
|
|
|
|
# swc tests/integration/three-js/repo/src/ -d tests/integration/three-js/repo/build/
|
|
|
|
# swc tests/integration/three-js/repo/test/unit/**/*.js -d tests/integration/three-js/repo/test/unit/build/
|
2020-05-28 16:23:53 +03:00
|
|
|
|
2021-06-24 11:01:21 +03:00
|
|
|
(cd tests/integration/three-js/build/test && qunit -r failonlyreporter unit/three.source.unit.js)
|
2020-05-28 16:23:53 +03:00
|
|
|
|
|
|
|
# terser: contains with statement in test
|
|
|
|
# Rome.js: I forgot the cause, but it didn't work.
|
|
|
|
# jQuery: browser only (window.document is required)
|
2020-07-01 10:31:55 +03:00
|
|
|
- name: (swc) redux
|
2020-05-28 16:23:53 +03:00
|
|
|
run: |
|
|
|
|
export PATH="$PATH:$HOME/npm/bin"
|
2021-06-24 11:01:21 +03:00
|
|
|
mkdir -p tests/integration/redux
|
2020-05-28 16:23:53 +03:00
|
|
|
npm i -g qunit failonlyreporter
|
|
|
|
|
|
|
|
# Download
|
2021-06-24 11:01:21 +03:00
|
|
|
git clone --depth 1 https://github.com/reduxjs/redux.git -b v4.1.0 tests/integration/redux/repo
|
|
|
|
swc --sync tests/integration/redux/repo/src/ -d tests/integration/redux/repo/lib/
|
|
|
|
echo "module.exports=require('./index')" > tests/integration/redux/repo/lib/redux.js
|
|
|
|
swc --sync tests/integration/redux/repo/src/ -d tests/integration/redux/repo/test/
|
|
|
|
swc --sync tests/integration/redux/repo/test/ -d tests/integration/redux/repo/test/
|
|
|
|
|
|
|
|
(cd tests/integration/redux/repo && npm i)
|
|
|
|
(cd tests/integration/redux/repo && npx jest '.*.js' --modulePathIgnorePatterns 'typescript')
|
2021-11-09 14:42:49 +03:00
|
|
|
- name: (swcpack) example react app
|
2020-08-06 08:55:16 +03:00
|
|
|
run: |
|
|
|
|
export PATH="$PATH:$HOME/npm/bin"
|
2021-11-09 14:42:49 +03:00
|
|
|
(cd crates/swc_node_bundler/tests/integration/react && npm i && npx spack)
|