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 CI
  • Loading branch information
confused-Techie authored Jan 19, 2025
2 parents d0fdd26 + d37af54 commit 9a41be2
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: CI

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

jobs:
test:
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: Test
run: npm run test

0 comments on commit 9a41be2

Please sign in to comment.