Skip to content

Commit

Permalink
chore: Added automated testing on github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kwiky committed Jan 2, 2024
1 parent a2c7773 commit c561b19
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build and publish image to Docker Packages

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm ci
- run: npm run build --if-present
- run: npm test

0 comments on commit c561b19

Please sign in to comment.