Bump cookie and express in /frontend #146
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: Check code format | |
on: | |
pull_request: | |
paths: | |
- "frontend/**" | |
jobs: | |
prettier: | |
runs-on: windows-latest | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.19.0 | |
- name: Setup Package | |
run: npm ci | |
- name: Check formating | |
run: npm run format:check |