Skip to content

MDTZ-1154: Include a Figma File name into the name of Atlassian Design for a Figma Node #379

MDTZ-1154: Include a Figma File name into the name of Atlassian Design for a Figma Node

MDTZ-1154: Include a Figma File name into the name of Atlassian Design for a Figma Node #379

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: Build the app
run: npm run build
- 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 .