Skip to content

Commit

Permalink
ci: refactor steps
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber committed Jun 28, 2022
1 parent 6b633e0 commit b2608ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ jobs:
run: npm install -g @devcontainers/cli

- name: Start Dev Container
run: devcontainer up --workspace-folder my-package
env:
DOCKER_BUILDKIT: 1

- name: Lint package
run: |
git config --global init.defaultBranch main
git init
git add .
devcontainer exec --workspace-folder . poe lint
devcontainer up --workspace-folder .
working-directory: ./my-package/

- name: Lint package
run: devcontainer exec --workspace-folder my-package poe lint

- name: Test package
run: devcontainer exec --workspace-folder my-package poe test

Expand Down

0 comments on commit b2608ea

Please sign in to comment.