Skip to content

Commit

Permalink
chore(repo): Hello
Browse files Browse the repository at this point in the history
  • Loading branch information
nikosdouvlis committed Oct 11, 2023
1 parent 886a8a8 commit af7797c
Showing 1 changed file with 16 additions and 22 deletions.
38 changes: 16 additions & 22 deletions .github/workflows/nightly-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,23 @@ on:
- cron: '0 7 * * *'

jobs:
test:
name: Test
runs-on: ${{ vars.RUNNER_NORMAL }}
build:
name: Build packages and upload artifacts
uses: ./.github/workflows/build-base.yml

registry:
name: Publish (Verdaccio)
needs: build
uses: ./.github/workflows/registry-base.yml

integration-nextjs:
name: Integration (NextJS canary)
needs: registry
uses: ./.github/workflows/e2e-base.yml
with:
SCRIPT: 'E2E_NEXTJS_VERSION=canary npm run test:integration:nextjs'
secrets: inherit
steps:
- run: 'echo "Test placeholder" && exit 1'
- name: Report Status
if: always()
uses: ravsamhq/notify-slack-action@v1
Expand All @@ -20,21 +32,3 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_SDK_E2E_ALERTS_WEBHOOK_URL }}


# build:
# name: Build packages and upload artifacts
# uses: ./.github/workflows/build-base.yml
#
# registry:
# name: Publish (Verdaccio)
# needs: build
# uses: ./.github/workflows/registry-base.yml
#
# integration-nextjs:
# name: Integration (NextJS canary)
# needs: registry
# uses: ./.github/workflows/e2e-base.yml
# with:
# SCRIPT: 'E2E_NEXTJS_VERSION=canary npm run test:integration:nextjs'
# secrets: inherit

0 comments on commit af7797c

Please sign in to comment.