Skip to content

Commit

Permalink
Run tests on push and PR's
Browse files Browse the repository at this point in the history
Signed-off-by: macdonst <[email protected]>
  • Loading branch information
macdonst committed Aug 26, 2024
1 parent 1775e51 commit 50250c2
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,50 @@ defaults:
shell: bash

jobs:
# Test the package
test:
# Setup
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [ 18.x, 20.x ]
os: [ windows-latest, ubuntu-latest, macOS-latest ]

# Go
steps:

- name: Check out repo
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/

- name: Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: Install
run: npm install

- name: Test
run: npm test
env:
CI: true

# ----- Only git tag testing + package publishing beyond this point ----- #

# Publish to package registries
publish:
# Setup
needs: test
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest

Expand Down

0 comments on commit 50250c2

Please sign in to comment.