Skip to content

chore: remove test script without secret #851

chore: remove test script without secret

chore: remove test script without secret #851

Workflow file for this run

name: Test
permissions:
contents: read
issues: write
pull-requests: write
on:
push:
branches-ignore:
- main
- alpha
- beta
- next
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node-version: [20, 22]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm run types
- run: npm test
env:
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}