1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 10:52:11 +00:00
libs/.github/workflows/test-queue.yml
Florian Bouillon df43d5c2c0 fix: incorrect names on tests
Signed-off-by: Florian BOUILLON <f.bouillon@aptatio.com>
2023-07-12 16:26:28 +02:00

43 lines
1.0 KiB
YAML

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Test Queue
on:
push:
paths:
- './packages/queue/**'
- '.github/workflows/test-queue.yml'
branches: [ "master" ]
pull_request:
paths:
- './packages/queue/**'
- '.github/workflows/test-queue.yml'
branches: [ "master" ]
jobs:
queue:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/queue
strategy:
matrix:
node-version: [14.x, 16.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Queue deps
run: npm ci
- name: Build Queue
run: npm run build
# - name: Test Queue
# run: npm run test