Update dependency luxon to v3.4.3 #181
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This GitHub Actions workflow triggers after receiving a Deployment Status event from GH Actions environment. This works | |
# with providers like Vercel, Heroku and others. This workflow does the following | |
# | |
# - Runs after deployment event | |
# - Uses the target_url provided in the deployment event | |
# - Dry run all the checks on Checkly | |
# - If the dry run passes, deploy the checks. | |
# | |
# You can of course trigger the Checkly CLI in other workflows or steps inside your GH Action configuration. | |
name: Checkly Deploy | |
on: | |
push: | |
branches: | |
- main | |
env: | |
CHECKLY_API_KEY: ${{ secrets.CHECKLY_API_KEY }} | |
CHECKLY_ACCOUNT_ID: ${{ secrets.CHECKLY_ACCOUNT_ID }} | |
jobs: | |
deploy-e2e: | |
name: Deploy E2E on Checkly | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
- name: Install dependencies | |
run: yarn | |
- name: Deploy checks | |
if: steps.run-checks.outcome == 'success' | |
run: npm run checkly:deploy |