Skip to content

Commit

Permalink
Add test to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAlbDR authored Feb 11, 2024
1 parent aeada3c commit f549385
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,24 @@ env:

jobs:

test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up NodeJS
uses: actions/setup-node@v1
with:
node-version: 20

- name: Install all dependencies
run: npm install

- name: Run Tests
run: npm test

build:
runs-on: ubuntu-latest

Expand Down

0 comments on commit f549385

Please sign in to comment.