Skip to content

Commit

Permalink
Merge pull request #7 from KNU-AEYE/6-github-action-build-workflow
Browse files Browse the repository at this point in the history
🚧 WIP: ci workflows
  • Loading branch information
ilp-sys authored Mar 29, 2024
2 parents 862dd34 + 5484ce1 commit da9e4d7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 36 deletions.
36 changes: 0 additions & 36 deletions .github/workflows/blank.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build test

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '21'

- name: Install dependencies
run: ls -la && npm install
#working-directory:

- name: Build
run: npm run build

0 comments on commit da9e4d7

Please sign in to comment.