Skip to content

Commit

Permalink
ci: add build stage
Browse files Browse the repository at this point in the history
  • Loading branch information
brenoepics authored May 4, 2024
1 parent f34269d commit fe0f13d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
run: |
npm ci
npm run all
- name: Hello world action step
uses: ./ # Uses an action in the root directory
id: hello
with:
who-to-greet: "Mona the Octocat"
# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.time }}"
run: echo "The time was ${{ steps.hello.outputs.time }}"

0 comments on commit fe0f13d

Please sign in to comment.