Skip to content

Commit

Permalink
feat: github Action의 맞는 새로운 appspec.yml을 구현 (CC-134)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunkkkk committed Aug 12, 2024
1 parent be39a01 commit ab304cb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/appspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "14"
- run: npm install
- run: npm test

0 comments on commit ab304cb

Please sign in to comment.