Skip to content

feat(localization): DLT-2452 setup i18n #2038

feat(localization): DLT-2452 setup i18n

feat(localization): DLT-2452 setup i18n #2038

Workflow file for this run

name: Unit Tests
on:
pull_request:
paths:
- 'packages/dialtone-vue3/**'
- 'packages/dialtone-vue2/**'
push:
branches:
- staging
paths:
- 'packages/dialtone-vue3/**'
- 'packages/dialtone-vue2/**'
env:
HUSKY: 0
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
permissions:
packages: read
steps:
- name: Check out branch
uses: actions/checkout@v4
- name: Use pnpm
uses: pnpm/action-setup@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "pnpm"
registry-url: "https://npm.pkg.github.com"
scope: "dialpad"
env:
NODE_AUTH_TOKEN: ${{ github.token }}
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile
- name: Run unit tests
run: pnpm nx run dialtone:test:vue