Skip to content

Merge pull request #122 from ImageMarkup/add-gtm-to-gallery #284

Merge pull request #122 from ImageMarkup/add-gtm-to-gallery

Merge pull request #122 from ImageMarkup/add-gtm-to-gallery #284

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
jobs:
test:
name: Test production build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22.x"
- name: Do a production build
run: |
npm ci
npm run build
audit:
name: Dependency vulnerability audit
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22.x"
- name: Check for dependency vulnerabilities
run: |
npm ci
npm audit