Skip to content

Fixes: Flemish translations / CI workflow / Video file sizes. #925

Fixes: Flemish translations / CI workflow / Video file sizes.

Fixes: Flemish translations / CI workflow / Video file sizes. #925

Workflow file for this run

name: NPM Dev site CI/CD
on:
push:
branches: ["dev"]
paths:
- "src/**"
pull_request:
branches: ["dev"]
paths:
- "src/**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "src" # Here the path to the folder where package-lock.json is located.
strategy:
matrix:
node-version: ["16.x"] # [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v4
with:
ref: dev
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
# - run: npm test