Skip to content

chore: version packages #129

chore: version packages

chore: version packages #129

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
with:
fetch-depth: 0
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: '24'
- run: npm ci --no-audit --no-fund
- run: npm test
- run: npm run check:syntax
- run: npm run check:versions
- run: npm run check:chrome-store
- run: npm pack --dry-run
- name: Check whitespace
run: |
if [ "${{ github.event_name }}" = "pull_request" ]; then
git diff --check "${{ github.event.pull_request.base.sha }}...HEAD"
else
git diff --check HEAD^
fi