Skip to content

Commit

Permalink
Fix up workflow and docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
lantrix committed Oct 31, 2024
1 parent b222746 commit 545af74
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Lint
run: docker-compose run lint
run: docker compose run lint
- name: Tests
run: docker-compose run tests
run: docker compose run tests
5 changes: 2 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
version: '3.4'
services:
tests:
image: buildkite/plugin-tester
volumes:
- ".:/plugin"
lint:
image: buildkite/plugin-linter
command: ['--name', 'seek-oss/private-npm']
command: ["--name", "seek-oss/private-npm"]
volumes:
- ".:/plugin:ro"
- ".:/plugin:ro"

0 comments on commit 545af74

Please sign in to comment.