Skip to content

feat: 회원가입 퍼널 구축 #57

feat: 회원가입 퍼널 구축

feat: 회원가입 퍼널 구축 #57

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- name: Checkout project.
uses: actions/checkout@v3
- name: Check Node v
run: node -v
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Get npm cache directory path
id: npm-cache-dir-path
run: echo "dir=$(npm cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: npm-cache
with:
path: ${{ steps.npm-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-npm-${{ hashFiles('**/npm.lock') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install the project dependencies
run: npm ci
- name: Prettier check
run: npm run prettier