Skip to content

[PB-6473]: feat/read mail quota usage via JMAP Quota/get #190

[PB-6473]: feat/read mail quota usage via JMAP Quota/get

[PB-6473]: feat/read mail quota usage via JMAP Quota/get #190

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://npm.pkg.github.com'
- name: Configure @internxt registry
run: |
echo "@internxt:registry=https://npm.pkg.github.com" >> .npmrc
echo "//npm.pkg.github.com/:_authToken=${NPM_TOKEN}" >> .npmrc
env:
NPM_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm test