remove property len on scbs method #165
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: 'Tests: deno 1.x' | |
on: [pull_request, push] | |
jobs: | |
# full test | |
full: | |
name: 'full (with codepage)' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: denoland/setup-deno@main | |
with: | |
deno-version: v1.x | |
- uses: ljharb/actions/node/install@main | |
with: | |
node-version: '16.' | |
- run: sudo curl -Lo /usr/bin/rooster https://github.com/SheetJS/rooster/releases/download/v0.2.0/rooster-v0.2.0-linux-amd64 | |
- run: sudo chmod a+x /usr/bin/rooster | |
- run: make init | |
- run: 'cd test_files; make all; cd -' | |
- run: deno test --allow-env --allow-read --allow-write --config misc/test.deno.jsonc test.ts | |
# full test (no codepage) | |
fullnocp: | |
name: 'full (no codepage)' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: denoland/setup-deno@main | |
with: | |
deno-version: v1.x | |
- uses: ljharb/actions/node/install@main | |
with: | |
node-version: '16.' | |
- run: sudo curl -Lo /usr/bin/rooster https://github.com/SheetJS/rooster/releases/download/v0.2.0/rooster-v0.2.0-linux-amd64 | |
- run: sudo chmod a+x /usr/bin/rooster | |
- run: make init | |
- run: 'cd test_files; make all; cd -' | |
- run: deno test --allow-env --allow-read --allow-write --config misc/test.deno.jsonc testnocp.ts |