Bump @types/node from 20.12.7 to 20.14.6 in /democrasite-frontend #343
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: CI | |
# Enable Buildkit and let compose use it to speed up image building | |
env: | |
DOCKER_BUILDKIT: 1 | |
COMPOSE_DOCKER_CLI_BUILD: 1 | |
on: | |
pull_request: | |
branches: ["master", "main"] | |
paths-ignore: ["docs/**"] | |
push: | |
branches: ["master", "main"] | |
paths-ignore: ["docs/**"] | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
# Doesn't require docker | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code Repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
# Consider using pre-commit.ci for open source project | |
- name: Run pre-commit | |
uses: pre-commit/[email protected] | |
# Since these don't run from the root they are difficult to add to pre-commit | |
typescript: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./democrasite-frontend/ | |
steps: | |
- name: Checkout Code Repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "21.x" | |
- name: Install dependencies | |
run: npm ci | |
- name: Run eslint and tsc | |
run: npm run lint | |
# With no caching at all the entire ci process takes 4m 30s to complete! | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code Repository | |
uses: actions/checkout@v4 | |
- name: Copy environment files | |
run: cp -r .envs.template .envs | |
- name: Build the Stack | |
run: docker compose -f docker-compose.local.yml build django | |
- name: Run DB Migrations | |
run: docker compose -f docker-compose.local.yml run --rm django python manage.py migrate | |
- name: Run Django Tests | |
run: docker compose -f docker-compose.local.yml run django pytest | |
- name: Tear down the Stack | |
run: docker compose -f docker-compose.local.yml down |