fix: update jwt and remove some deprecations #371
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: 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: npm run deploy:prod | |
- name: Deploy Beta | |
if: github.ref == 'refs/heads/beta' | |
env: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | |
run: npm run deploy:beta |