|
|
@@ -0,0 +1,164 @@
|
|
|
+name: Node CI
|
|
|
+
|
|
|
+on: [push]
|
|
|
+
|
|
|
+jobs:
|
|
|
+
|
|
|
+ resolve-dependencies:
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+
|
|
|
+ strategy:
|
|
|
+ matrix:
|
|
|
+ node-version: [10.x, 12.x]
|
|
|
+
|
|
|
+ steps:
|
|
|
+ - uses: actions/checkout@v1
|
|
|
+ - name: Use Node.js ${{ matrix.node-version }}
|
|
|
+ uses: actions/setup-node@v1
|
|
|
+ with:
|
|
|
+ node-version: ${{ matrix.node-version }}
|
|
|
+ - name: Cache/Restore node_modules
|
|
|
+ id: cache
|
|
|
+ uses: actions/cache@v1
|
|
|
+ with:
|
|
|
+ path: node_modules
|
|
|
+ key: ${{ runner.OS }}-node_modules-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
|
|
|
+ - name: Install dependencies
|
|
|
+ if: steps.cache.outputs.cache-hit != 'true'
|
|
|
+ run: |
|
|
|
+ yarn
|
|
|
+ - name: Install plugins
|
|
|
+ if: steps.cache.outputs.cache-hit != 'true'
|
|
|
+ run: |
|
|
|
+ yarn add growi-plugin-lsx growi-plugin-pukiwiki-like-linker growi-plugin-attachment-refs
|
|
|
+ yarn add -D react-images react-motion
|
|
|
+ - name: Print dependencies
|
|
|
+ run: |
|
|
|
+ echo -n "node " && node -v
|
|
|
+ echo -n "npm " && npm -v
|
|
|
+ yarn list --depth=0
|
|
|
+
|
|
|
+
|
|
|
+ test:
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ needs: resolve-dependencies
|
|
|
+
|
|
|
+ strategy:
|
|
|
+ matrix:
|
|
|
+ node-version: [10.x, 12.x]
|
|
|
+
|
|
|
+ steps:
|
|
|
+ - uses: actions/checkout@v1
|
|
|
+ - name: Use Node.js ${{ matrix.node-version }}
|
|
|
+ uses: actions/setup-node@v1
|
|
|
+ with:
|
|
|
+ node-version: ${{ matrix.node-version }}
|
|
|
+ - name: Cache/Restore node_modules
|
|
|
+ uses: actions/cache@v1
|
|
|
+ with:
|
|
|
+ path: node_modules
|
|
|
+ key: ${{ runner.OS }}-node_modules-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
|
|
|
+ - name: yarn lint
|
|
|
+ run: |
|
|
|
+ yarn lint
|
|
|
+ - name: Launch MongoDB
|
|
|
+ uses: wbari/start-mongoDB@v0.2
|
|
|
+ with:
|
|
|
+ mongoDBVersion: 3.6
|
|
|
+ - name: yarn test
|
|
|
+ run: |
|
|
|
+ yarn test
|
|
|
+ env:
|
|
|
+ MONGO_URI: mongodb://localhost:27017/growi_test
|
|
|
+
|
|
|
+ - name: Slack Notification
|
|
|
+ uses: homoluctus/slatify@master
|
|
|
+ if: failure()
|
|
|
+ with:
|
|
|
+ type: ${{ job.status }}
|
|
|
+ job_name: '*test (${{ matrix.node-version }})*'
|
|
|
+ channel: '#ci'
|
|
|
+ url: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
+
|
|
|
+ build-dev:
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ needs: resolve-dependencies
|
|
|
+
|
|
|
+ strategy:
|
|
|
+ matrix:
|
|
|
+ node-version: [10.x, 12.x]
|
|
|
+
|
|
|
+ steps:
|
|
|
+ - uses: actions/checkout@v1
|
|
|
+ - name: Use Node.js ${{ matrix.node-version }}
|
|
|
+ uses: actions/setup-node@v1
|
|
|
+ with:
|
|
|
+ node-version: ${{ matrix.node-version }}
|
|
|
+ - name: Cache/Restore node_modules
|
|
|
+ uses: actions/cache@v1
|
|
|
+ with:
|
|
|
+ path: node_modules
|
|
|
+ key: ${{ runner.OS }}-node_modules-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
|
|
|
+ - name: yarn build:dev
|
|
|
+ run: |
|
|
|
+ yarn build:dev
|
|
|
+
|
|
|
+ - name: Slack Notification
|
|
|
+ uses: homoluctus/slatify@master
|
|
|
+ if: failure()
|
|
|
+ with:
|
|
|
+ type: ${{ job.status }}
|
|
|
+ job_name: '*build-dev (${{ matrix.node-version }})*'
|
|
|
+ channel: '#ci'
|
|
|
+ url: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
+
|
|
|
+
|
|
|
+ build-prod:
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ needs: resolve-dependencies
|
|
|
+
|
|
|
+ strategy:
|
|
|
+ matrix:
|
|
|
+ node-version: [10.x, 12.x]
|
|
|
+
|
|
|
+ steps:
|
|
|
+ - uses: actions/checkout@v1
|
|
|
+ - name: Use Node.js ${{ matrix.node-version }}
|
|
|
+ uses: actions/setup-node@v1
|
|
|
+ with:
|
|
|
+ node-version: ${{ matrix.node-version }}
|
|
|
+ - name: Cache/Restore node_modules
|
|
|
+ uses: actions/cache@v1
|
|
|
+ with:
|
|
|
+ path: node_modules
|
|
|
+ key: ${{ runner.OS }}-node_modules-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
|
|
|
+ - name: Launch MongoDB
|
|
|
+ uses: wbari/start-mongoDB@v0.2
|
|
|
+ with:
|
|
|
+ mongoDBVersion: 3.6
|
|
|
+ - name: yarn build:prod:analyze
|
|
|
+ run: |
|
|
|
+ yarn build:prod:analyze
|
|
|
+ - name: Shrink dependencies for production
|
|
|
+ run: |
|
|
|
+ yarn install --production
|
|
|
+ - name: yarn server:prod:ci
|
|
|
+ run: |
|
|
|
+ yarn server:prod:ci
|
|
|
+ env:
|
|
|
+ MONGO_URI: mongodb://localhost:27017/growi
|
|
|
+
|
|
|
+ - name: Upload reports
|
|
|
+ uses: actions/upload-artifact@v1
|
|
|
+ if: success()
|
|
|
+ with:
|
|
|
+ name: report
|
|
|
+ path: report
|
|
|
+ - name: Slack Notification
|
|
|
+ uses: homoluctus/slatify@master
|
|
|
+ if: failure()
|
|
|
+ with:
|
|
|
+ type: ${{ job.status }}
|
|
|
+ job_name: '*build-prod (${{ matrix.node-version }})*'
|
|
|
+ channel: '#ci'
|
|
|
+ url: ${{ secrets.SLACK_WEBHOOK_URL }}
|