Skip to content

Commit

Permalink
DENO_FUTURE=1 (#378)
Browse files Browse the repository at this point in the history
  • Loading branch information
nleck authored May 15, 2024
1 parent f70621f commit 8a21c47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ pipeline {
echo "Remove old test files"
find test -name ".*.json" -exec rm {} \\;
export DENO_FUTURE=1
deno lint src
deno fmt --check src test
deno check `find src -name "*.ts"`
deno check `find test -name "*.ts"`
'''.stripIndent()
}
}
Expand Down Expand Up @@ -77,7 +78,7 @@ pipeline {
steps {
sh '''\
#!/bin/bash
export DENO_FUTURE=1
deno test \
--allow-read \
--allow-write \
Expand Down
2 changes: 1 addition & 1 deletion quality.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
set -e

export DENO_FUTURE=1
deno fmt src test bench mod.ts
deno lint --fix src test bench mod.ts
rm -rf .trace .test .coverage
Expand Down

0 comments on commit 8a21c47

Please sign in to comment.