Skip to content

Merge pull request #4 from tryingET/dependabot/github_actions/mitchel… #16

Merge pull request #4 from tryingET/dependabot/github_actions/mitchel…

Merge pull request #4 from tryingET/dependabot/github_actions/mitchel… #16

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "20"
- name: Install dependencies
run: |
if [[ -f package-lock.json ]]; then
npm ci
else
npm install --package-lock-only --ignore-scripts
npm ci
fi
- name: Validate structure
run: npm run check
- name: npm pack dry run
run: npm pack --dry-run