mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-23 03:12:12 +00:00
43 lines
1.1 KiB
YAML
43 lines
1.1 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 URL Manager
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- './packages/url-manager/**'
|
|
- '.github/workflows/test-url-manager.yml'
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
paths:
|
|
- './packages/url-manager/**'
|
|
- '.github/workflows/test-url-manager.yml'
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
url-manager:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ./packages/url-manager
|
|
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 URL Manager deps
|
|
run: npm ci
|
|
|
|
- name: Build URL Manager
|
|
run: npm run build
|
|
|
|
- name: Test URL Manager
|
|
run: npm run test
|