Skip to content

chore(release): publish #49

chore(release): publish

chore(release): publish #49

Workflow file for this run

name: Validate PR/Push
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions: read-all
jobs:
run-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [20, 22, 24]
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: ${{ matrix.version }}
registry-url: https://registry.npmjs.org/
- run: git config --global user.email "cicd@example.com" && git config --global user.name "Your Name"
- run: npm ci --ignore-scripts
- run: npm audit --audit-level=high
- run: npm test