Skip to content

chore: remove @internationalized/message #894

chore: remove @internationalized/message

chore: remove @internationalized/message #894

Workflow file for this run

name: Build and Test
on:
push:
pull_request:
branches: [main]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: pnpm/[email protected]
- name: Setup Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
env:
NODE_OPTIONS: "--max_old_space_size=4096"
- name: Test
run: pnpm test
env:
CI: true
NODE_OPTIONS: "--max_old_space_size=4096"