Skip to content

Commit

Permalink
fix: lock-file
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlighter committed Oct 10, 2023
1 parent e580b60 commit a4acdc6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
category: "/language:${{matrix.language}}"
build:
runs-on: ubuntu-latest
needs:
- analyze
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
Expand Down
20 changes: 11 additions & 9 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"@processors/": "./source/processors/"
},
"tasks": {
"btr": "deno run --allow-env --allow-read --allow-write=.btr.json --allow-run=deno tasks.ts $0"
"btr": "deno run --allow-env --allow-read --allow-write=.btr.json --allow-run=deno --no-lock tasks.ts $0"
},
"btr-tasks": {
"serve": {
"task": "deno run source/run/server/mod.ts",
"description": "Run server",
"description": "🌐 Run server",
"unstable": true,
"permissions": {
"env": [
Expand Down Expand Up @@ -73,7 +73,7 @@
"rm .coverage -rf",
"deno test source"
],
"description": "Run tests and collect coverage",
"description": "🧪 Run tests and collect coverage",
"seed": 0,
"doc": true,
"traceOps": true,
Expand Down Expand Up @@ -132,34 +132,34 @@
"deno lint",
"deno fmt"
],
"description": "Lint and format code"
"description": "🔎 Lint and format code"
},
"coverage": {
"task": "deno coverage .coverage",
"description": "Print coverage report (require `test` task to be run first)"
"description": "🔬 Print coverage report (require `test` task to be run first)"
},
"ci:check": {
"task": [
"deno lint",
"deno fmt --check"
],
"description": "Lint and format code (CI)",
"description": "🤖 Lint and format code (CI)",
"lock": false
},
"ci:test": {
"task": [
"deno task btr test",
"deno task btr coverage"
],
"description": "Lint and format code (CI)",
"description": "🤖 Run tests, collect coverage and print coverage (CI)",
"lock": false
},
"deploy:deno": {
"task": [
"deno run source/run/server/mod_imports.ts",
"deployctl deploy --project=metrics --include=source,deno.jsonc --prod source/run/server/mod.ts"
],
"description": "Deploy metrics on https://deno.com/deploy",
"description": "🦕 Deploy metrics on https://deno.com/deploy",
"env": {
"DENO_DEPLOY_TOKEN": true
},
Expand Down Expand Up @@ -190,7 +190,9 @@
}
},
"docker:build": {
"task": "docker build --tag lowlighter/metrics:4.0.0 ."
"task": "docker build --tag lowlighter/metrics:4.0.0 .",
"description": "🐋 Build docker image",
"lock": false
}
},
"lint": {
Expand Down
2 changes: 1 addition & 1 deletion deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a4acdc6

Please sign in to comment.