Skip to content

Redact mailbox details from worker logs #28

Redact mailbox details from worker logs

Redact mailbox details from worker logs #28

Workflow file for this run

name: PR Checks
on:
pull_request:
types:
- opened
- reopened
- synchronize
permissions:
contents: read
jobs:
unit-tests:
if: github.event.pull_request.user.login == 'ltyu'
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: pnpm/action-setup@v4
with:
version: 10.4.1
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run unit tests
run: pnpm test:run
- name: Build project
run: pnpm build