Skip to content

Commit

Permalink
Commit to adapt the feature to denoland#8710 and denoland#8622
Browse files Browse the repository at this point in the history
  • Loading branch information
mayankagarwals committed Dec 31, 2020
2 parents 322085d + 587155f commit 70264e7
Show file tree
Hide file tree
Showing 276 changed files with 14,470 additions and 5,150 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ jobs:
python-version: "2.7"
architecture: x64

- name: Install Node
uses: actions/setup-node@v2
with:
node-version: "14"
check-latest: true

- name: Remove unused versions of Python
if: startsWith(matrix.os, 'windows')
run: |-
Expand Down Expand Up @@ -217,7 +223,9 @@ jobs:

- name: Test debug
if: matrix.kind == 'test_debug'
run: cargo test --locked --all-targets
run: |
cargo test --locked --doc
cargo test --locked --all-targets
- name: Run Benchmarks
if: matrix.kind == 'bench'
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ gclient_config.py_entries
# compiled wasm files
std/wasi/testdata/snapshot_preview1/

# generated v8 coverage files
cli/tests/.test_coverage/

# MacOS generated files
.DS_Store
.DS_Store?
Loading

0 comments on commit 70264e7

Please sign in to comment.