Skip to content

Lint UI - 6407149938 - @ravicious #15904

Lint UI - 6407149938 - @ravicious

Lint UI - 6407149938 - @ravicious #15904

Workflow file for this run

name: Lint UI
run-name: Lint UI - ${{ github.run_id }} - @${{ github.actor }}
on:
pull_request:
paths:
- 'web/**'
merge_group:
paths:
- 'web/**'
jobs:
lint:
name: Prettier, ESLint, & TSC
runs-on: ubuntu-latest
steps:
- name: Checkout OSS Teleport
uses: actions/checkout@v3
- name: Determine Toolchain Versions
run: |
echo NODE_VERSION=$(make -s -C build.assets print-node-version) >> $GITHUB_ENV
- name: Print versions
run: |
echo "node: ${NODE_VERSION}"
- name: Setup Node Toolchain
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install Yarn dependencies
run: yarn --frozen-lockfile
- name: Run lint
run: yarn lint
- name: Run Type Check
run: yarn type-check