2020-09-24 20:07:56 +08:00
|
|
|
# Automate, customize, and execute your software development workflows right in your repository with GitHub Actions.
|
|
|
|
# Documentation: https://docs.github.com/en/actions
|
|
|
|
|
2020-08-14 22:34:43 +08:00
|
|
|
name: build
|
|
|
|
|
2020-10-01 17:48:43 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2020-08-14 22:34:43 +08:00
|
|
|
|
|
|
|
jobs:
|
2020-09-24 23:00:46 +08:00
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [14]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
2020-10-01 16:55:56 +08:00
|
|
|
- uses: actions/checkout@v2.3.3
|
|
|
|
|
2020-09-24 23:00:46 +08:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2020-10-05 14:20:52 +08:00
|
|
|
uses: actions/setup-node@v2.1.2
|
2020-09-24 23:00:46 +08:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
|
2020-10-01 16:55:56 +08:00
|
|
|
- name: Load cached dependencies
|
|
|
|
uses: actions/cache@v2
|
2020-10-01 17:23:35 +08:00
|
|
|
id: cache
|
2020-10-01 16:55:56 +08:00
|
|
|
with:
|
2020-10-01 17:03:32 +08:00
|
|
|
path: |
|
|
|
|
**/node_modules
|
|
|
|
/home/runner/.cache/Cypress
|
2020-10-01 17:08:28 +08:00
|
|
|
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
|
2020-09-24 23:00:46 +08:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
id: install-dependencies
|
2020-10-01 17:23:35 +08:00
|
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
2020-09-24 23:00:46 +08:00
|
|
|
run: yarn install
|
|
|
|
|
|
|
|
- name: Lint code
|
|
|
|
id: lint
|
|
|
|
run: yarn lint
|
|
|
|
|
|
|
|
- name: Send Slack notifications
|
|
|
|
uses: act10ns/slack@v1
|
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
|
|
|
steps: ${{ toJson(steps) }}
|
2020-11-05 16:38:39 +08:00
|
|
|
channel: '#tiptap-notifications'
|
2020-09-24 23:00:46 +08:00
|
|
|
if: failure()
|
|
|
|
|
2020-08-19 23:30:52 +08:00
|
|
|
test:
|
2020-09-11 18:00:16 +08:00
|
|
|
runs-on: ubuntu-latest
|
2020-08-14 22:34:43 +08:00
|
|
|
|
2020-09-11 17:40:35 +08:00
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
|
2020-08-14 22:34:43 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-08-20 20:45:38 +08:00
|
|
|
node-version: [14]
|
2020-08-14 22:34:43 +08:00
|
|
|
|
|
|
|
steps:
|
2020-08-19 23:28:46 +08:00
|
|
|
|
2020-10-01 16:55:56 +08:00
|
|
|
- uses: actions/checkout@v2.3.3
|
|
|
|
|
2020-08-14 22:34:43 +08:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
2020-10-05 14:20:52 +08:00
|
|
|
uses: actions/setup-node@v2.1.2
|
2020-08-14 22:34:43 +08:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2020-08-19 23:28:46 +08:00
|
|
|
|
2020-08-20 21:10:16 +08:00
|
|
|
- name: Run tests with Cypress
|
2020-09-11 17:40:35 +08:00
|
|
|
id: cypress
|
2020-08-19 23:28:46 +08:00
|
|
|
uses: cypress-io/github-action@v2
|
|
|
|
with:
|
2020-10-01 17:36:58 +08:00
|
|
|
cache-key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
|
2020-08-20 20:45:38 +08:00
|
|
|
start: yarn start
|
|
|
|
wait-on: 'http://localhost:3000'
|
2020-08-20 21:08:42 +08:00
|
|
|
project: ./tests
|
2020-08-19 23:28:46 +08:00
|
|
|
browser: chrome
|
|
|
|
|
2020-08-19 23:38:05 +08:00
|
|
|
- name: Export screenshots (on failure only)
|
2020-10-05 14:20:48 +08:00
|
|
|
uses: actions/upload-artifact@v2.2.0
|
2020-08-19 23:28:46 +08:00
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: cypress-screenshots
|
2020-08-19 23:33:39 +08:00
|
|
|
path: tests/cypress/screenshots
|
2020-10-05 16:00:48 +08:00
|
|
|
retention-days: 7
|
2020-08-19 23:28:46 +08:00
|
|
|
|
2020-08-19 23:38:05 +08:00
|
|
|
- name: Export screen recordings (on failure only)
|
2020-10-05 14:20:48 +08:00
|
|
|
uses: actions/upload-artifact@v2.2.0
|
2020-08-19 23:38:05 +08:00
|
|
|
if: failure()
|
2020-08-19 23:28:46 +08:00
|
|
|
with:
|
|
|
|
name: cypress-videos
|
2020-08-19 23:33:39 +08:00
|
|
|
path: tests/cypress/videos
|
2020-10-05 16:00:48 +08:00
|
|
|
retention-days: 7
|
2020-08-20 20:37:47 +08:00
|
|
|
|
2020-09-11 17:53:48 +08:00
|
|
|
- name: Send Slack notifications
|
2020-09-11 18:19:25 +08:00
|
|
|
uses: act10ns/slack@v1
|
2020-09-11 17:40:35 +08:00
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
|
|
|
steps: ${{ toJson(steps) }}
|
2020-11-05 16:38:39 +08:00
|
|
|
channel: '#tiptap-notifications'
|
2020-09-11 17:40:35 +08:00
|
|
|
if: failure()
|
|
|
|
|
2020-11-05 18:45:36 +08:00
|
|
|
# build:
|
|
|
|
# runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
# needs: lint
|
|
|
|
|
|
|
|
# env:
|
|
|
|
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
|
|
|
|
# strategy:
|
|
|
|
# matrix:
|
|
|
|
# node-version: [14]
|
|
|
|
|
|
|
|
# steps:
|
|
|
|
|
|
|
|
# - uses: actions/checkout@v2.3.3
|
|
|
|
|
|
|
|
# - name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
# uses: actions/setup-node@v2.1.2
|
|
|
|
# with:
|
|
|
|
# node-version: ${{ matrix.node-version }}
|
|
|
|
|
|
|
|
# - name: Load cached dependencies
|
|
|
|
# uses: actions/cache@v2
|
|
|
|
# id: cache
|
|
|
|
# with:
|
|
|
|
# path: |
|
|
|
|
# **/node_modules
|
|
|
|
# /home/runner/.cache/Cypress
|
|
|
|
# key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
|
|
|
|
# - name: Install dependencies
|
|
|
|
# id: install-dependencies
|
|
|
|
# if: steps.cache.outputs.cache-hit != 'true'
|
|
|
|
# run: yarn install
|
|
|
|
|
|
|
|
# - name: Build packages dependencies
|
|
|
|
# id: build-packages
|
|
|
|
# run: yarn build:packages
|
|
|
|
|
|
|
|
# - name: Send Slack notifications
|
|
|
|
# uses: act10ns/slack@v1
|
|
|
|
# with:
|
|
|
|
# status: ${{ job.status }}
|
|
|
|
# steps: ${{ toJson(steps) }}
|
|
|
|
# channel: '#tiptap-notifications'
|
|
|
|
# if: failure()
|