Skip to content

Commit

Permalink
added in testing to yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
vmaineng committed Jan 17, 2024
1 parent 526fb55 commit 1e38292
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,20 @@ jobs:
file: ./Dockerfile.dev
push: true
tags: ghcr.io/letsgettechnical/image:dev
tests:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [21.x, 20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm ci
- name: tests
run: npm test

0 comments on commit 1e38292

Please sign in to comment.