Skip to content

⬆️ Bump @babel/preset-react from 7.22.15 to 7.23.3 #516

⬆️ Bump @babel/preset-react from 7.22.15 to 7.23.3

⬆️ Bump @babel/preset-react from 7.22.15 to 7.23.3 #516

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