Skip to content

Feat/develop-env-log-print #30

Feat/develop-env-log-print

Feat/develop-env-log-print #30

Workflow file for this run

on:
pull_request:
branches:
- "production"
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.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: npm install
run: npm install
- name: build app
run: npm run build
- name: Run tests
run: npm run test:coverage