Skip to content

Commit

Permalink
ci: improve exist workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
line-o committed Jul 18, 2023
1 parent 7c57e0b commit 4616250
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/exist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
strategy:
matrix:
exist-version: [5.4.0, release, latest]
node-version: [16]
services:
# Label used to access the service container
exist:
Expand All @@ -24,17 +23,17 @@ jobs:
options: >-
--health-interval 4s
steps:
# Checkout code
- uses: actions/checkout@v2
# Build Frontend
- name: Build Frontend Using Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
- uses: actions/checkout@v3

# Dependencies
- name: Install dev-dependencies
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 16
- run: npm ci
# Testing
- name: Run Unit Tests

# Build, install and test XAR package
- name: Run Unit Tests
run: npm test

# TODO: Add upload to dockerhub
Expand Down

0 comments on commit 4616250

Please sign in to comment.