Skip to content

Bump @babel/eslint-parser from 7.25.1 to 7.25.7 #5617

Bump @babel/eslint-parser from 7.25.1 to 7.25.7

Bump @babel/eslint-parser from 7.25.1 to 7.25.7 #5617

Workflow file for this run

name: build-and-test
on: [push]
jobs:
django:
name: Django tests
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.12']
services:
postgres:
image: postgres:15
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v2
- name: Flake8
run: make flake8
- name: Test
run: GITHUB=true make test
js:
name: JS tests
runs-on: ubuntu-24.04
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Apt Update
run: sudo apt-get -qq update
- name: Install libgif-dev
run: sudo apt-get install -y libgif-dev
- name: Install npm modules
run: npm install
- name: Run eslint
run: npm run eslint
- name: Test
run: npm run test