-
-
Notifications
You must be signed in to change notification settings - Fork 6
99 lines (94 loc) · 2.77 KB
/
test.yaml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: 'Basic test'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
env:
dependencies: 'svelte svelte-preprocess esbuild-svelte vue esbuild-plugin-vue3 sass node-sass-tilde-importer'
jobs:
pnpm:
name: Test with pnpm
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Copy files
run: |
mkdir -p Build/Carbon.Pipeline/
cp -n Test/pipeline.yaml ./
cp -n Installer/Distribution/Defaults/{*,.*} ./ || true
cp -R {Lib,defaults.yaml,*.mjs,*.js} Build/Carbon.Pipeline/
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: latest
- name: Setup node
uses: actions/[email protected]
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: |
node Build/Carbon.Pipeline/setPackageManager.js pnpm
pnpm install --no-frozen-lockfile
pnpm add ${{ env.dependencies }}
- name: Show config
run: pnpm showConfig
- name: Build files
run: pnpm build
yarn:
name: Test with yarn
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Copy files
run: |
mkdir -p Build/Carbon.Pipeline/
cp -n Test/pipeline.yaml ./
cp -n Installer/Distribution/Defaults/{*,.*} ./ || true
cp -R {Lib,defaults.yaml,*.mjs,*.js} Build/Carbon.Pipeline/
- name: Setup node
uses: actions/[email protected]
with:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: |
node Build/Carbon.Pipeline/setPackageManager.js yarn
yarn set version stable
yarn install
yarn add ${{ env.dependencies }}
- name: Show config
run: yarn showConfig
- name: Build files
run: yarn build
npm:
name: Test with npm
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Copy files
run: |
mkdir -p Build/Carbon.Pipeline/
cp -n Test/pipeline.yaml ./
cp -n Installer/Distribution/Defaults/{*,.*} ./ || true
cp -R {Lib,defaults.yaml,*.mjs,*.js} Build/Carbon.Pipeline/
- uses: actions/[email protected]
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: |
node Build/Carbon.Pipeline/setPackageManager.js npm
npm install
npm add ${{ env.dependencies }}
- name: Show config
run: npm run showConfig
- name: Build files
run: npm run build