8000 Bump @next/env from 14.2.14 to 14.2.15 · instructlab/ui@1373b32 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Bump @next/env from 14.2.14 to 14.2.15 #395

Bump @next/env from 14.2.14 to 14.2.15

Bump @next/env from 14.2.14 to 14.2.15 #395

Workflow file for this run

name: UI lint
on:
push:
branches:
- main
- release-1.0
paths:
- '.github/workflows/lint-ui.yml'
- '**/*'
- '!**/*.md'
pull_request:
branches:
- main
- release-1.0
paths:
- '.github/workflows/lint-ui.yml'
- '**/*'
- '!**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
npm-lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run UI linting
run: npm run lint
- name: Run UI type check
run: npm run type-check
- name: Run UI build
run: npm run build
0