Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitri-koenig committed Jun 14, 2024
1 parent 0514045 commit 535530d
Show file tree
Hide file tree
Showing 4 changed files with 1,479 additions and 2 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Run tests

on:
push:
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.ref }}-run-tests
cancel-in-progress: true

permissions: read-all

jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
timeout-minutes: 10

strategy:
matrix:
node-version: [ 16, 18, 20, 21, latest ]

steps:
- name: Checkout code
uses: actions/checkout@v4 # Step 1: Check out the source code from the repository.

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm' # Step 2: Use npm caching for faster dependency installs.

- name: Install Node.js dependencies
run: npm ci # Step 3: Perform a clean install of Node.js dependencies.

- name: Run tests
run: npm test # Step 4: Run tests using the specified Node.js version.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ npm-debug.log
coverage
node
config.js
package-lock.json
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Simple Vertec Api [![Build Status](https://travis-ci.org/dimitri-koenig/simple-vertec-api.svg?branch=master)](https://travis-ci.org/dimitri-koenig/simple-vertec-api)
# Simple Vertec Api

Simple Vertec Api is an simple wrapper around www.vertec.com XML webservice for node.js. It features solid CRUD support for dealing with Vertec's data.

Expand Down
Loading

0 comments on commit 535530d

Please sign in to comment.