From fe0f13d6f8763a961abe09f449ad7b877c973c0c Mon Sep 17 00:00:00 2001 From: Breno A Date: Sat, 4 May 2024 13:56:47 -0300 Subject: [PATCH] ci: add build stage --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34b7d94..7dc3a9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,9 @@ 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 @@ -61,4 +63,4 @@ jobs: 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 }}" \ No newline at end of file + run: echo "The time was ${{ steps.hello.outputs.time }}"