Skip to content

feat(yandex): new app! #45

feat(yandex): new app!

feat(yandex): new app! #45

Workflow file for this run

name: Test worker
on:
push:
branches: [master]
paths:
- "**/*.ts"
- "**/*.json"
- wrangler.toml
- .github/workflows/deploy-worker.yml
- .github/workflows/test-worker.yml
pull_request:
branches: [master]
paths:
- "**/*.ts"
- "**/*.json"
- wrangler.toml
- .github/workflows/deploy-worker.yml
- .github/workflows/test-worker.yml
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: "package.json"
- name: Install dependencies
run: npm ci --include=dev
- name: Run tests
run: npm test