Skip to content

Commit

Permalink
Merge pull request #5 from LosersUnited/feat-automated-ci-testing
Browse files Browse the repository at this point in the history
Add automated tests using GH Actions
  • Loading branch information
Davilarek authored Feb 11, 2024
2 parents 14a229f + 4c1c64f commit 069b044
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/automated-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Node.js CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- uses: pnpm/action-setup@v3
with:
version: 8
- run: pnpm i
- run: pnpm run build
- run: pnpm test

0 comments on commit 069b044

Please sign in to comment.