Skip to content

Commit

Permalink
v0.1.0: add step to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
laisfrigerio committed Jan 12, 2025
1 parent a78184f commit 4991ca2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish to NPM

on:
pull_request:
branches: [ "main" ]

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 22
registry-url: https://registry.npmjs.org/

- name: Install dependencies
run: npm install

- name: Build the project
run: npm run test

0 comments on commit 4991ca2

Please sign in to comment.