Skip to content

Commit

Permalink
Merge pull request #1 from pulsar-edit/setup-ci
Browse files Browse the repository at this point in the history
Setup GitHub Actions CI
  • Loading branch information
confused-Techie authored Jan 7, 2025
2 parents d708058 + 38f3983 commit 29df093
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tests

on:
pull_request:
push:
branches: ['master']

jobs:
tests:
runs-on: ubuntu-latest
env:
NODE_VERSION: 16
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm run test

0 comments on commit 29df093

Please sign in to comment.