Skip to content

Commit

Permalink
fix [skip test]
Browse files Browse the repository at this point in the history
  • Loading branch information
4rthem committed Mar 27, 2024
1 parent 40325e5 commit e96bfe2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,17 +236,19 @@ jobs:
docker compose pull
- name: Setup
if: "!contains(github.event.head_commit.message, '[skip test]')"
run: |
docker compose down --volumes
bin/dev/make-cert.sh
sudo PHRASEA_DOMAIN=${PHRASEA_DOMAIN} bin/dev/append-etc-hosts.sh
bin/setup.sh test
- name: Test
if: "!contains(github.event.head_commit.message, '[skip test]')"
run: bin/test.sh

- name: Run Cypress tests
if: "!contains(github.event.head_commit.message, '[skip cypress]')"
if: "!contains(github.event.head_commit.message, '[skip cypress]') && !contains(github.event.head_commit.message, '[skip test]')"
run: |
docker compose up -d
docker compose run --rm cypress
Expand Down

0 comments on commit e96bfe2

Please sign in to comment.