Memory perf optimizations #130
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: Deno DOM | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- name: ubuntu-latest | |
- name: macos-latest | |
#- name: windows-latest | |
runs-on: ${{ matrix.os.name }} | |
steps: | |
- name: Install Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Get Deno DOM | |
uses: actions/checkout@v2 | |
- name: Check code formatting | |
run: deno fmt --check --unstable | |
# We check in a separate step because dynamic imports | |
# no longer type check at runtime which we need for | |
# invoking the unit tests | |
- name: Check TypeScript types | |
run: deno task type-check | |
- name: Run tests | |
run: deno test --no-check --allow-read --allow-net wasm.test.ts |