-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (51 loc) · 1.78 KB
/
create.yml
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
name: Test create command
on:
pull_request:
push:
branches:
- master
- develop
jobs:
create:
runs-on: ubuntu-latest
strategy:
matrix:
template: ['minimal', 'showroom']
name: Test project template ${{matrix.template}}
steps:
- uses: actions/checkout@v2
- name: Read package.json node and npm engines version
uses: skjnldsv/[email protected]
id: versions
with:
fallbackNode: '^12'
fallbackNpm: '^6'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@v2
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Cache node modules
uses: actions/cache@v1
env:
cache-name: cache-node-modules
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Try creating and building new project
run: |
npm pack
npm install -g magpie-base-*.tgz
cd ../
magpie new my-project --template=${{matrix.template}}
cd my-project
npm install
npm uninstall magpie-base
npm install ../magpie-base/magpie-base-*.tgz
npm run build
# Reason for npm pack: https://stackoverflow.com/questions/50010438/install-npm-local-module-directory-without-symlinks