Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
docker
/
login-action
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Security
Insights
Files
75ee3ea
.github
ISSUE_TEMPLATE
workflows
ci.yml
codeql.yml
test.yml
validate.yml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
SECURITY.md
dependabot.yml
docker-login.png
.yarn
__tests__
dist
src
.dockerignore
.editorconfig
.eslintignore
.eslintrc.json
.gitattributes
.gitignore
.prettierignore
.prettierrc.json
.yarnrc.yml
LICENSE
README.md
action.yml
codecov.yml
dev.Dockerfile
docker-bake.hcl
jest.config.ts
package.json
tsconfig.json
yarn.lock
Breadcrumbs
login-action
/
.github
/
workflows
/
test.yml
View Runs
Blame
Blame
Latest commit
History
History
31 lines (28 loc) · 579 Bytes
Breadcrumbs
login-action
/
.github
/
workflows
/
test.yml
Top
File metadata and controls
Code
Blame
31 lines (28 loc) · 579 Bytes
Raw
name: test concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true on: push: branches: - 'master' - 'releases/v*' pull_request: jobs: test: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Test uses: docker/bake-action@v5 with: targets: test - name: Upload coverage uses: codecov/codecov-action@v4 with: file: ./coverage/clover.xml token: ${{ secrets.CODECOV_TOKEN }}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
You can’t perform that action at this time.