Skip to content

Commit

Permalink
First draft: add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mattxwang committed Oct 25, 2023
1 parent 9720e8b commit 4bef89b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build

0 comments on commit 4bef89b

Please sign in to comment.