Skip to content

Commit

Permalink
add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gevalo1 committed Apr 23, 2024
1 parent eb09633 commit ff44561
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches:
- main

jobs:
reproduction:
name: Build, Start
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Setup Node.js 20.11.1
uses: actions/setup-node@v4
with:
node-version: 20.11.1

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Start
run: npm run start

0 comments on commit ff44561

Please sign in to comment.