Let RedisMessageQueue.listen() take an AbortSignal #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
pull-requests: write | |
services: | |
redis: | |
image: redis | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6379:6379 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- run: deno task test --junit-path=.test-report.xml | |
- uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: .test-report.xml | |
- run: deno task check | |
- run: deno task dnt | |
- run: bun run ./test_runner.js | |
working-directory: ${{ github.workspace }}/npm/ | |
publish: | |
if: github.event_name == 'push' | |
needs: [test] | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- if: github.ref_type == 'branch' | |
run: | | |
jq \ | |
--arg build "$GITHUB_RUN_NUMBER" \ | |
--arg commit "${GITHUB_SHA::8}" \ | |
'.version = .version + "-dev." + $build + "+" + $commit' \ | |
deno.json > deno.json.tmp | |
mv deno.json.tmp deno.json | |
- if: github.ref_type == 'tag' | |
run: '[[ "$(jq -r .version deno.json)" = "$GITHUB_REF_NAME" ]]' | |
- run: 'deno task dnt "$(jq -r .version deno.json)"' | |
env: | |
DNT_TEST: false | |
- run: | | |
set -ex | |
npm config set //registry.npmjs.org/:_authToken "$NPM_AUTH_TOKEN" | |
if [[ "$GITHUB_REF_TYPE" = "tag" ]]; then | |
npm publish --provenance --access public | |
else | |
npm publish --provenance --access public --tag dev | |
fi | |
env: | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
working-directory: ${{ github.workspace }}/npm/ | |
- run: deno publish --allow-dirty |