Skip to content

Export normalizeTokens and useTokenize utility functions. #66

Export normalizeTokens and useTokenize utility functions.

Export normalizeTokens and useTokenize utility functions. #66

Workflow file for this run

name: Unit Test
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
matrix:
name: 'Node ${{ matrix.node }}'
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v2
with:
version: 8.2.0
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Generate language definitions
run: pnpm run build:languages
- name: Unit Test
run: pnpm run test