Skip to content

test: make timezone tests work in any timezone environment #2

test: make timezone tests work in any timezone environment

test: make timezone tests work in any timezone environment #2

Workflow file for this run

name: Test
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: latest
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm run test:unit
- name: Run tests with coverage
run: node --test --experimental-test-coverage
- name: Run linter
run: npm run lint