Skip to content

Commit

Permalink
CI: remove custom biome step
Browse files Browse the repository at this point in the history
  • Loading branch information
soofstad committed Jan 10, 2024
1 parent f409168 commit e82c3ea
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
working-directory: example/

- name: Run docker images
run: docker-compose up -d
run: docker-compose up
working-directory: example/

- name: Pack core plugins
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ jobs:
- name: Install pre-commit
run: pip install pre-commit

- name: Setup Biome CLI
uses: biomejs/setup-biome@v1

- name: Run Biome
run: biome ci .

- name: Cache pre-commit environment
uses: actions/cache@v3
env:
Expand All @@ -33,7 +27,7 @@ jobs:
- name: Run pre-commit
env:
# These need node_modules, and will be covered in the build step anyway
SKIP: type_check_core,type_check_plugins,biome_check
SKIP: type_check_core,type_check_plugins
run: pre-commit run --all-files

tests:
Expand Down
10 changes: 0 additions & 10 deletions example/.env

This file was deleted.

13 changes: 7 additions & 6 deletions example/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ services:
environment:
AUTH_ENABLED: 0
ENVIRONMENT: local
RESET_DATA_SOURCE: off
# RESET_DATA_SOURCE: off
MONGO_USERNAME: maf
MONGO_PASSWORD: xd7wCEhEx4kszsecYFfC
SECRET_KEY: sg9aeUM5i1JO4gNN8fQadokJa3_gXQMLBjSGGYcfscs= # Don't reuse this in production...
volumes:
- ../../data-modelling-storage-service/src:/code/src
# volumes:
# - ../../data-modelling-storage-service/src:/code/src
ports:
- '5000:5000'
depends_on:
Expand All @@ -29,7 +29,7 @@ services:
MONGODB_EXTRA_FLAGS: "--quiet"

job-api:
image: datamodelingtool.azurecr.io/dm-job:dev
image: datamodelingtool.azurecr.io/dm-job:v1.5.1
platform: linux/amd64
restart: unless-stopped
environment:
Expand All @@ -51,8 +51,9 @@ services:
- job-store
- db
volumes:
- /var/run/docker.sock:/var/run/docker.sock # Needed for docker-in-docker jobs
- ../../dm-job/src/job_handler_plugins:/code/src/job_handler_plugins
# - /var/run/docker.sock:/var/run/docker.sock # Needed for docker-in-docker jobs
- ./job_handlers:/code/src/job_handler_plugins
# - ../../dm-job/src/job_handler_plugins:/code/src/job_handler_plugins
ports:
- '5001:5000'

Expand Down

0 comments on commit e82c3ea

Please sign in to comment.