Skip to content

Release: ✨ Fix illegal parameter error and location url error [1.0.26] #300

Release: ✨ Fix illegal parameter error and location url error [1.0.26]

Release: ✨ Fix illegal parameter error and location url error [1.0.26] #300

Workflow file for this run

name: "🧪 Node Tests"
on: [pull_request]
env:
GITHUB_HASH: $(git rev-parse --short "$GITHUB_SHA")
jobs:
release:
name: Run general NPM unit and itegration tests
strategy:
matrix:
node-version: [16.x]
go-version: ['1.20']
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: 🟢 Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install npm depencencies
run: npm ci
working-directory: ./
- name: Run Tests
run: npm test
working-directory: ./