Skip to content

Merge pull request #1 from Talentia-Software-OSS/2.3.3 #2

Merge pull request #1 from Talentia-Software-OSS/2.3.3

Merge pull request #1 from Talentia-Software-OSS/2.3.3 #2

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js Build
on:
workflow_call:
workflow_dispatch:
pull_request:
push:
branches: [ "master" ]
permissions:
contents: read
# Needed for the 'trilom/file-changes-action' action
pull-requests: read
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.11.0]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Run build library
run: npm run build:lib:prod --if-present
- name: Run build css
run: npm run build:css --if-present
- name: Run copy files
run: npm run update:file --if-present