⬆️ Bump clsx from 1.2.1 to 2.0.0 #191
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pr-check | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, closed] | |
branches: [main] | |
jobs: | |
check_build_and_deploy_job: | |
if: github.event_name == 'pull_request' && github.event.action != 'closed' | |
runs-on: ubuntu-latest | |
name: Lint and Build PR | |
steps: | |
- name: Checkout repo 🛎 | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Use Node 18.x 🔧 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
cache: "yarn" | |
- name: Install Dependencies 📦 | |
run: | | |
yarn install | |
- name: Run linters and formatter checks 🚨 | |
run: | | |
yarn typecheck | |
yarn lint:ci | |
yarn prettier:ci | |
- name: Test Build 🚧 | |
run: yarn build |