Skip to content

Feature/1993 podwalk infrastructure changelog build #6

Feature/1993 podwalk infrastructure changelog build

Feature/1993 podwalk infrastructure changelog build #6

Workflow file for this run

on: pull_request
name: Review
jobs:
changelog:
runs-on: ubuntu-latest
name: Changelog should be updated
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Git fetch
run: git fetch
- name: Check that changelog has been updated.
run: git diff --exit-code origin/${{ github.base_ref }} -- CHANGELOG.md && exit 1 || exit 0
audit:
name: audit
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: npm audit
run: npm audit
assets-coding-standards:
name: Assets coding standards
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Coding standards
run: |
docker network create frontend
docker compose run --rm node npm install
docker compose run --rm node npm run check-coding-standards