Skip to content

Commit

Permalink
add basic workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarargs committed Feb 18, 2024
1 parent d5882aa commit e200f4f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI

on: push

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ Starter template for JavaScript apps

- .nvmrc
- TypeScript
- Jest
- GitHub Actions Workflow

0 comments on commit e200f4f

Please sign in to comment.