Skip to content

Run build:min on dist directory #4442

Run build:min on dist directory

Run build:min on dist directory #4442

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node LTS
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Run Lint
run: yarn lint:check
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node LTS
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Run Build
run: yarn build