Skip to content

fix: Create New Authorization modal #217

fix: Create New Authorization modal

fix: Create New Authorization modal #217

Workflow file for this run

name: Lint and Build
on:
pull_request:
branches:
- main
- develop
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
jobs:
lint:
name: Lint code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install dependencies
run: yarn install --immutable
- name: Run lint
run: yarn lint
test-build:
name: Test build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install dependencies
run: yarn install --immutable
- name: Test build website
run: yarn build