Dropdown μ»΄ν¬λνΈ μ½λ 컨벀μ λ° ESLint μ μ© #173
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: Dependency Check Action | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
dependency-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
cache: 'yarn' | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
- name: Install dependencies | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: 'false' | |
run: yarn install | |
- name: Check dependencies | |
run: yarn dependency-cruiser packages |