re enable build step

This commit is contained in:
Hans Pagel
2020-11-11 14:13:43 +01:00
parent 0fcce0e9a1
commit f6fa9ae087

View File

@@ -110,49 +110,49 @@ jobs:
channel: '#tiptap-notifications' channel: '#tiptap-notifications'
if: failure() if: failure()
# build: build:
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# needs: lint needs: lint
# env: env:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
# strategy: strategy:
# matrix: matrix:
# node-version: [14] node-version: [14]
# steps: steps:
# - uses: actions/checkout@v2.3.4 - uses: actions/checkout@v2.3.4
# - name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v2.1.2 uses: actions/setup-node@v2.1.2
# with: with:
# node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
# - name: Load cached dependencies - name: Load cached dependencies
# uses: actions/cache@v2 uses: actions/cache@v2
# id: cache id: cache
# with: with:
# path: | path: |
# **/node_modules **/node_modules
# /home/runner/.cache/Cypress /home/runner/.cache/Cypress
# key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
# - name: Install dependencies - name: Install dependencies
# id: install-dependencies id: install-dependencies
# if: steps.cache.outputs.cache-hit != 'true' if: steps.cache.outputs.cache-hit != 'true'
# run: yarn install run: yarn install
# - name: Build packages dependencies - name: Try to build the packages
# id: build-packages id: build-packages
# run: yarn build:packages run: yarn build:ci
# - name: Send Slack notifications - name: Send Slack notifications
# uses: act10ns/slack@v1 uses: act10ns/slack@v1
# with: with:
# status: ${{ job.status }} status: ${{ job.status }}
# steps: ${{ toJson(steps) }} steps: ${{ toJson(steps) }}
# channel: '#tiptap-notifications' channel: '#tiptap-notifications'
# if: failure() if: failure()