Skip to content

build(deps-dev): bump flatted from 3.3.1 to 3.4.2 (#851) #818

build(deps-dev): bump flatted from 3.3.1 to 3.4.2 (#851)

build(deps-dev): bump flatted from 3.3.1 to 3.4.2 (#851) #818

Workflow file for this run

---
name: Stage
on:
workflow_dispatch:
push:
branches:
- main
jobs:
stage:
runs-on: ubuntu-latest
environment: staging
name: Stage the project
steps:
- name: Checkout sources
uses: actions/checkout@v6
- name: Install node 22
uses: actions/setup-node@v6
with:
node-version: '22'
cache: npm
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Cache pip repository
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
- name: Prepare python environment
run: pip install -r requirements.txt
- name: Build site
run: mkdocs build
- name: Install project modules
run: npm ci
- name: Lint source files
run: npm run lint
- name: Run unit tests and verify code coverage
run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
fail_ci_if_error: false