Skip to content

Commit

Permalink
ci/cd: rename action job name "unittests" to "test"
Browse files Browse the repository at this point in the history
It is not a unit test, so rename it.
  • Loading branch information
wdzeng committed Aug 3, 2024
1 parent 9806f33 commit e1009e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
workflow_dispatch:

jobs:
unittests:
name: Run unittests
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -28,7 +28,7 @@ jobs:
run: pnpm test
publish:
name: Publish action
needs: unittests
needs: test
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion test/.env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copy this file to .env.local and `pnpm test` to run unittest.
# Copy this file to .env.local and `pnpm test` to run tests.
TEST_CLIENT_ID=your-client-id
TEST_CLIENT_SECRET=your-client-secret
TEST_ACCESS_TOKEN_URL=your-access-token-url
Expand Down

0 comments on commit e1009e3

Please sign in to comment.