chore(deps): lock file maintenance #8709
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
# name: Synthetic Monitoring | |
# on: | |
# schedule: | |
# - cron: '0 */1 * * *' | |
# workflow_dispatch: | |
# # Allows external webhook trigger | |
# repository_dispatch: | |
# types: | |
# - webhook | |
# jobs: | |
# synthetic-monitoring: | |
# name: | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# node-version: [14] | |
# steps: | |
# - name: Checkout Code | |
# uses: actions/checkout@v3 | |
# - name: pnpm Setup | |
# uses: pnpm/[email protected] | |
# with: | |
# version: 7.1.0 | |
# - name: Setup Node.js ${{ matrix.node-version }} | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: ${{ matrix.node-version }} | |
# cache: 'pnpm' | |
# - name: Install Dependencies | |
# run: pnpm install | |
# id: deployInstall | |
# - name: Build | |
# run: pnpm run build | |
# - name: Setup Environment | |
# run: echo $TEST_ENV_FILE | base64 --decode > .env.test.local | |
# env: | |
# TEST_ENV_FILE: ${{ secrets.TEST_DOTENV }} | |
# - name: Run Integration Tests | |
# run: pnpm run test:integration:ci |