Skip to content

disable testing for DateTimeFormat speedup. weird interplay with vitest #160

disable testing for DateTimeFormat speedup. weird interplay with vitest

disable testing for DateTimeFormat speedup. weird interplay with vitest #160

Workflow file for this run

name: CI
on:
push:
branches:
- main
env:
TZ: "America/New_York"
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [14.21.3, 16.20.0, 18.19.0, 20.10.0]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: 8.6.3
- name: Setup Node
uses: actions/setup-node@v3
with:
# NOTE: keep synced with .npmrc
node-version: 18.19.0
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
# Only for the first Node version
if: matrix.node == '14.21.3'
run: pnpm run lint
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test --node-version=${{ matrix.node }}