From 013a8f24028b69d48647046f5690ef0e8da845e4 Mon Sep 17 00:00:00 2001 From: Aliaksei Chapyzhenka Date: Sun, 10 Oct 2021 22:01:47 -0700 Subject: [PATCH] linux wasm plan --- .github/workflows/linux-wasm.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/linux-wasm.yml diff --git a/.github/workflows/linux-wasm.yml b/.github/workflows/linux-wasm.yml new file mode 100644 index 0000000..9374a25 --- /dev/null +++ b/.github/workflows/linux-wasm.yml @@ -0,0 +1,17 @@ +name: Linux WASM +on: [push, pull_request] +jobs: + test: + name: Linux ${{ matrix.node-version }} + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [16] + steps: + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: npm i + - run: npm run nyc_mocha_wasm