Skip to content

Commit

Permalink
chore(test): add more tests to example-ts action
Browse files Browse the repository at this point in the history
  • Loading branch information
kamontat committed Jun 13, 2024
1 parent 36b30c1 commit 0d9ec8a
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions common/resources/.github/workflows/_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,25 @@ on:
push:

jobs:
test-example-default:
test-example:
runs-on: ubuntu-latest
steps:
- name: Set up repository
uses: actions/checkout@v4
- uses: kc-workspace/github-actions/example-ts@main
test-example-custom:
runs-on: ubuntu-latest
steps:
- name: Set up repository
uses: actions/checkout@v4
- uses: kc-workspace/github-actions/example-ts@main
- name: example with default name
uses: kc-workspace/github-actions/example-ts@main
- name: example [with] custom name
uses: kc-workspace/github-actions/example-ts@main
with:
name: custom
- name: example [env] custom name [action specific]
uses: kc-workspace/github-actions/example-ts@main
env:
EXAMPLE_TS__NAME: action-specific
- name: example [env] custom name [generic name]
uses: kc-workspace/github-actions/example-ts@main
env:
NAME: action-specific
test-asdf:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 0d9ec8a

Please sign in to comment.