Skip to content

⬆️ Bump prism-react-renderer from 1.3.5 to 2.0.6 #189

⬆️ Bump prism-react-renderer from 1.3.5 to 2.0.6

⬆️ Bump prism-react-renderer from 1.3.5 to 2.0.6 #189

Workflow file for this run

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