chore: trigger CI for 314385d6 #295
Workflow file for this run
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: | |
push: | |
pull_request: | |
jobs: | |
test-native: | |
runs-on: ${{matrix.os}} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
node-version: [18.x, 20.x, 21.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js ${{matrix.node-version}} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{matrix.node-version}} | |
- name: Build | |
run: npm install | |
- name: Test | |
run: npm test | |
build-wasm: | |
runs-on: ubuntu-latest | |
env: | |
NODE_VERSION: 18.x | |
EMSDK_VERSION: 3.1.14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js ${{env.NODE_VERSION}} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{env.NODE_VERSION}} | |
- name: Set up Emscripten SDK ${{env.EMSDK_VERSION}} | |
uses: mymindstorm/setup-emsdk@v14 | |
with: | |
version: ${{env.EMSDK_VERSION}} | |
- name: Install dependencies | |
run: npm install --ignore-scripts | |
- name: Build WebAssembly module | |
run: npm run build-wasm | |
- name: Upload build output | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wasm-gen | |
path: | | |
wasm/mceliece.wasm | |
wasm/mceliece_constants.js | |
if-no-files-found: error | |
test-wasm: | |
needs: build-wasm | |
runs-on: ${{matrix.os}} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
node-version: [18.x, 20.x, 21.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js ${{matrix.node-version}} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{matrix.node-version}} | |
- name: Install dependencies | |
run: npm install --ignore-scripts | |
- name: Download WebAssembly module | |
uses: actions/download-artifact@v4 | |
with: | |
name: wasm-gen | |
path: wasm | |
- name: Test | |
run: npm test |