Skip to content

⬆️ Bump @types/react from 18.2.33 to 18.2.39 #514

⬆️ Bump @types/react from 18.2.33 to 18.2.39

⬆️ Bump @types/react from 18.2.33 to 18.2.39 #514

Workflow file for this run

name: pull-request
on:
pull_request:
types: [opened, synchronize, edited]
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 16
- name: Cache dependencies
id: cache-deps
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-scripts
- name: Linting
run: yarn lint
- name: Build
run: yarn build