Skip to content

Remove NODE_AUTH_TOKEN from publish workflow #196

Remove NODE_AUTH_TOKEN from publish workflow

Remove NODE_AUTH_TOKEN from publish workflow #196

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: Test Repo
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.ref }} # Ensure it fetches the correct ref
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test