Merge pull request #40 from neogeek/hotfix/updated-packages #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: | |
- main | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Update NPM to latest | |
run: npm install npm@latest -g | |
- name: Print Node.js and NPM version | |
run: | | |
node -v | |
npm -v | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
timeout-minutes: 5 | |
run: npm test |