Skip to content

dependabot 제거

dependabot 제거 #35

Workflow file for this run

name: PR and Push Check Test
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
- develop
jobs:
pr-push-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Cache Yarn dependencies
uses: actions/cache@v3
with:
path: |
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
key: ${{ runner.os }}-yarn-berry-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-berry-
- name: Set up Yarn 2 (Berry)
run: corepack enable && corepack prepare [email protected] --activate
- name: Install dependencies
run: yarn install --immutable
- name: Run lint checks
run: yarn lint
- name: Run format check
run: yarn format --check
- name: Build the project
run: yarn build