Skip to content

1.0.0-alpha.3 RC - Update Dependencies and use Biome for Linting and Formatting #741

1.0.0-alpha.3 RC - Update Dependencies and use Biome for Linting and Formatting

1.0.0-alpha.3 RC - Update Dependencies and use Biome for Linting and Formatting #741

Workflow file for this run

name: Lint & Build Project
on:
pull_request:
branches: [ master, develop, feature/** ]
push:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '20.x'
- name: Install Node Modules
run: npm i
- name: Run Linter
run: npm run lint
- name: Run Typecheck
run: npm run typecheck
- name: Build Project
run: npm run build