-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (39 loc) · 961 Bytes
/
test.yml
File metadata and controls
45 lines (39 loc) · 961 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
name: Test asdf-angular-cli plugin
on:
push:
pull_request:
schedule:
# Run weekly to show activity and catch regressions
- cron: '0 3 * * 1'
jobs:
test-npm:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install dependencies
uses: actions/setup-node@v6
with:
node-version: 24
- name: Test asdf-angular-cli
uses: asdf-vm/actions/plugin-test@v4
with:
gitref: master
version: 18.2.1
command: ng --version
test-pnpm:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: pnpm/action-setup@v4
with:
version: 10
- name: Test asdf-angular-cli
uses: asdf-vm/actions/plugin-test@v4
with:
gitref: master
version: 18.2.1
command: ng --version