Skip to content

Commit

Permalink
Fix tests.yaml paths typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vnphanquang committed Nov 28, 2024
1 parent b284aef commit 8183156
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ on:
branches:
- main
paths:
- 'package/lib/**'
- '**/*_test.ts'
- '.github/workflows/tests.yaml'
- "scripts/**/*"
- ".github/workflows/tests.yaml"
pull_request:
branches:
- main
Expand Down Expand Up @@ -34,25 +33,25 @@ jobs:
deno-version: v2.x

- name: Install dependencies
run: 'deno install'
run: "deno install"

- name: Lint
run: 'deno lint'
run: "deno lint"

- name: Type-check
run: 'deno check **/*.ts'
run: "deno check **/*.ts"

- name: Build
run: 'deno task build'
run: "deno task build"

- name: Publint
run: 'deno task publint'
run: "deno task publint"

- name: Run unit tests
run: 'deno task ci:test'
run: "deno task ci:test"

- name: Generate code coverage report
run: 'deno task ci:coverage'
run: "deno task ci:coverage"

- name: Upload test results to Codecov
uses: codecov/test-results-action@v1
Expand All @@ -71,4 +70,3 @@ jobs:
flags: unittests, ${{ runner.os }}
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

0 comments on commit 8183156

Please sign in to comment.