fix: add "types" field to conditional exports (#470) #256
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
pull_request: | |
push: | |
env: | |
THREADS_WORKER_INIT_TIMEOUT: 15000 | |
jobs: | |
# Building threads library from source | |
Build: | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node_version: ['15'] | |
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: install dependencies and build | |
run: npm install | |
- name: Dev test | |
run: npm run test:tooling | |
- name: Upload artifacts | |
if: contains(matrix.os, 'ubuntu') | |
uses: actions/upload-artifact@v2 | |
with: | |
path: | | |
./bundle | |
./dist | |
./dist-esm | |
./test-tooling/webpack/dist | |
# Testing the built files | |
Test: | |
needs: Build | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node_version: [ '10', '12', '14' ] | |
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: install dependencies | |
run: npm install --ignore-scripts | |
- name: Download articats | |
uses: actions/download-artifact@v2 | |
- name: Place built files | |
shell: bash | |
run: | | |
mkdir dist && mv artifact/dist/* ./dist | |
mkdir dist-esm && mv artifact/dist-esm/* ./dist-esm | |
mkdir bundle && mv artifact/bundle/* ./bundle | |
mkdir -p test-tooling/webpack/dist/ && mv artifact/test-tooling/webpack/dist/* ./test-tooling/webpack/dist/ | |
- name: run the tests | |
run: npm run test:library && npm run test:puppeteer:basic && npm run test:puppeteer:webpack | |
Skip: | |
if: contains(github.event.head_commit.message, '[skip ci]') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Skip CI 🚫 | |
run: echo skip ci |