comment out wasm ci

This commit is contained in:
collin 2022-01-24 16:15:17 -08:00
parent 3d227058ca
commit a5368fb12a

View File

@ -1,39 +1,39 @@
name: WASM #name: WASM
on: #on:
pull_request: # pull_request:
push: # push:
branches: # branches:
- master # - master
- staging # - staging
- trying # - trying
paths-ignore: # paths-ignore:
- 'docs/**' # - 'docs/**'
- 'documentation/**' # - 'documentation/**'
env: #env:
RUST_BACKTRACE: 1 # RUST_BACKTRACE: 1
#
jobs: #jobs:
test-wasm-parser: # test-wasm-parser:
name: Test on ${{ matrix.os }} # name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }} # runs-on: ${{ matrix.os }}
defaults: # defaults:
run: # run:
working-directory: wasm # working-directory: wasm
strategy: # strategy:
matrix: # matrix:
os: [windows-latest] # os: [windows-latest]
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v2 # uses: actions/checkout@v2
- name: Install Rust Stable # - name: Install Rust Stable
uses: actions-rs/toolchain@v1 # uses: actions-rs/toolchain@v1
with: # with:
profile: minimal # profile: minimal
toolchain: stable # toolchain: stable
override: true # override: true
- name: Install wasm-pack # - name: Install wasm-pack
run: cargo install wasm-pack # run: cargo install wasm-pack
- name: Run wasm-pack # - name: Run wasm-pack
run: wasm-pack build --dev --target nodejs # run: wasm-pack build --dev --target nodejs
- name: Install dependencies and run tests # - name: Install dependencies and run tests
run: cd tests && npm ci && npm test # run: cd tests && npm ci && npm test