Skip to content

[๋…ธ์ฒ ] - ์ด๋ฉ”์ผ ์ธ์ฆ ๋ชจ๋‹ฌ ์ˆ˜์ • #6

[๋…ธ์ฒ ] - ์ด๋ฉ”์ผ ์ธ์ฆ ๋ชจ๋‹ฌ ์ˆ˜์ •

[๋…ธ์ฒ ] - ์ด๋ฉ”์ผ ์ธ์ฆ ๋ชจ๋‹ฌ ์ˆ˜์ • #6

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, and build
run: |
cd src
npm install
npm run build
env:
CI: true