Skip to content

Versie die kan bouwen zonder Rijksoverheid intelectual property #1

Versie die kan bouwen zonder Rijksoverheid intelectual property

Versie die kan bouwen zonder Rijksoverheid intelectual property #1

Workflow file for this run

name: Node - npm run jest
on:
push:
branches: [main, develop, release/**, hotfix/**]
pull_request:
branches: [main, develop, release/**, hofix/**]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
registry-url: 'https://npm.pkg.github.com'
- name: Install npm dependencies
run: |
echo "//npm.pkg.github.com/:_authToken=$NODE_AUTH_TOKEN" >> ~/.npmrc
npm ci --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.REPO_READ_ONLY_TOKEN }}
- name: Run unit tests
run: npm test