v3.6.2 #306
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |