Skip to content

MDTZ-1014: Use a signed user-bound JWT token as Figma OAuth 2.0 state parameter #308

MDTZ-1014: Use a signed user-bound JWT token as Figma OAuth 2.0 state parameter

MDTZ-1014: Use a signed user-bound JWT token as Figma OAuth 2.0 state parameter #308

Workflow file for this run

on: [pull_request]
jobs:
verify-app:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install
run: npm ci
- name: Check type errors
run: npm run build:check
- name: Check lint errors
run: npm run lint
- name: Check formatting errors
run: npm run format:check
- name: Run Unit tests
run: npm run test:unit
- name: Run Integration tests
run: npm run test:it:ci
- name: Build Docker image
run: docker build .