Skip to content

Wrangler V2 Migration #363

Wrangler V2 Migration

Wrangler V2 Migration #363

Workflow file for this run

name: Continuous Integration and Deployment
on:
pull_request:
push:
branches:
- master
- beta
jobs:
Integration_And_Deployment:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- name: Install Top Level Dependencies
run: npm ci
- name: Install Dependencies
run: npm run bootstrap
- 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:
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
run: npm run deploy:prod
- name: Deploy Beta
if: github.ref == 'refs/heads/beta'
env:
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
run: npm run deploy:beta