mirror of
https://github.com/dzeiocom/libs.git
synced 2025-06-19 22:19:20 +00:00
feat: Change workflows
Signed-off-by: Florian BOUILLON <f.bouillon@aptatio.com>
This commit is contained in:
42
.github/workflows/test-logger.yml
vendored
Normal file
42
.github/workflows/test-logger.yml
vendored
Normal file
@ -0,0 +1,42 @@
|
||||
# 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 Logger
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- './packages/logger/**'
|
||||
- '.github/workflows/test-logger.yml'
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
paths:
|
||||
- './packages/logger/**'
|
||||
- '.github/workflows/test-logger.yml'
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
logger:
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ./packages/logger
|
||||
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 Logger deps
|
||||
run: npm ci
|
||||
|
||||
- name: Build Logger
|
||||
run: npm run build
|
||||
|
||||
- name: Test Logger
|
||||
run: npm run test
|
Reference in New Issue
Block a user