Bump undici from 5.28.2 to 5.28.3 #506
Workflow file for this run
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: Continuous Integration and Deployment | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- beta | |
env: | |
NX_BRANCH: ${{ github.event.number || github.ref_name }} | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
jobs: | |
Integration_And_Deployment: | |
runs-on: ubuntu-latest | |
env: | |
OUTSIDE_CONTRIB: ${{ secrets.CF_API_TOKEN == '' }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
# Set node/npm/yarn versions using volta | |
- uses: volta-cli/action@v4 | |
with: | |
package-json-path: "${{ github.workspace }}/package.json" | |
- name: Use the package manager cache if available | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}- | |
- name: Install dependencies | |
run: npm ci | |
- name: Install Top Level Dependencies | |
run: npm ci | |
- name: Lint packages | |
run: npm run lint | |
- name: Build Packages | |
run: npm run build | |
- name: Test Packages | |
run: npm run test | |
- name: Deploy Prod | |
if: github.ref == 'refs/heads/master' | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | |
run: NX_CLOUD_DISTRIBUTED_EXECUTION=false npm run deploy:prod | |
- name: Deploy Beta | |
if: github.ref == 'refs/heads/beta' | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | |
run: NX_CLOUD_DISTRIBUTED_EXECUTION=false npm run deploy:beta | |
# We will deploy to dev so that cloudflare preview urls will point to the backend | |
# This will be a problem with multiple PRs, but hey we at least tried :) | |
- name: Deploy Dev | |
if: github.ref != 'refs/heads/beta' && github.ref != 'refs/heads/master' && ${{ env.OUTSIDE_CONTRIB == 'false' }} | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | |
run: NX_CLOUD_DISTRIBUTED_EXECUTION=false npm run deploy:dev |