Update govuk-frontend to v5.4.1 #179
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
test_node: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- id: npm-cache | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('.nvmrc') }}-${{ hashFiles('**/package-lock.json') }} | |
- if: steps.npm-cache.outputs.cache-hit != 'true' | |
run: npm ci | |
- run: npm run lint:js | |
- run: npm run lint:format | |
- run: npm run build | |
- run: npm run report:package | |
test_python: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
id: setup-python | |
with: | |
python-version: ${{ matrix.python }} | |
- uses: snok/install-poetry@v1 | |
with: | |
version: '1.8.3' | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- id: poetry-cache | |
uses: actions/cache@v2 | |
with: | |
path: .venv | |
key: ${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
- if: steps.poetry-cache.outputs.cache-hit != 'true' | |
run: poetry install --no-interaction --no-root | |
- run: poetry run flake8 tbxforms tests | |
- run: poetry run isort tbxforms tests --check-only --diff | |
- run: poetry run black tbxforms tests --check | |
# Enforce strict formatting on the snapshots | |
- run: poetry run djlint --check tests | |
# Lint the project's templates | |
- run: poetry run djlint tbxforms | |
- run: poetry run tox | |
- run: poetry build |