Skip to content

Commit

Permalink
chore: Add github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kewisch committed Jan 21, 2024
1 parent aa32dd9 commit 7880dd1
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: "Checkin"
on:
push:
branches:
- main
pull_request:

jobs:
build:
name: "Build"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: "Setup node"
uses: actions/setup-node@v3
with:
node-version: "latest"

- name: "npm ci"
run: npm ci

- name: "lint"
run: npm run lint

- name: "build"
run: npm run build

0 comments on commit 7880dd1

Please sign in to comment.