Skip to content

Commit

Permalink
remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
helenb committed Dec 5, 2023
1 parent 4db38a8 commit eab6134
Showing 1 changed file with 18 additions and 22 deletions.
40 changes: 18 additions & 22 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,26 @@ name: CI
on: push

jobs:
# lint:
# uses: ./.github/workflows/lint.yaml
lint:
uses: ./.github/workflows/lint.yaml

# test:
# uses: ./.github/workflows/test.yaml
test:
uses: ./.github/workflows/test.yaml

# deploy_production:
# if: contains(github.ref, 'master')
# needs: [lint, test]
# uses: ./.github/workflows/deploy-production.yaml

# deploy_dev:
# if: contains(github.ref, 'dev')
# needs: [lint, test]
# uses: ./.github/workflows/deploy-dev.yaml

# deploy_staging:
# if: contains(github.ref, 'staging')
# needs: [lint, test]
# uses: ./.github/workflows/deploy-staging.yaml
deploy_production:
if: contains(github.ref, 'master')
needs: [lint, test]
uses: ./.github/workflows/deploy-production.yaml
secrets: inherit

# this is to test a deployment script
deploy_test:
if: contains(github.ref, 'chore/github-actions')
#needs: [lint, test]
deploy_dev:
if: contains(github.ref, 'dev')
needs: [lint, test]
uses: ./.github/workflows/deploy-dev.yaml
secrets: inherit

deploy_staging:
if: contains(github.ref, 'staging')
needs: [lint, test]
uses: ./.github/workflows/deploy-staging.yaml
secrets: inherit

0 comments on commit eab6134

Please sign in to comment.