-
Notifications
You must be signed in to change notification settings - Fork 7
49 lines (41 loc) · 1019 Bytes
/
unit_tests.yml
File metadata and controls
49 lines (41 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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