Wrangler V2 Migration, new search bar, lerna updates (#79) #370
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 | |
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 |