2020-02-18 16:25:03 +00:00
|
|
|
name: skynet-webportal CI
|
2020-02-14 22:22:28 +00:00
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-03-23 14:02:47 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
2020-07-30 12:23:49 +00:00
|
|
|
node-version: 14.x
|
2020-03-23 14:02:47 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: yarn
|
|
|
|
|
2020-07-30 12:23:49 +00:00
|
|
|
- name: "Static code analysis: handshake-api"
|
|
|
|
run: yarn workspace handshake-api prettier --check .
|
2020-03-11 16:27:33 +00:00
|
|
|
|
2020-07-30 12:23:49 +00:00
|
|
|
- name: "Static code analysis: health-check"
|
|
|
|
run: yarn workspace health-check prettier --check .
|
|
|
|
|
|
|
|
- name: "Static code analysis: webapp"
|
|
|
|
run: yarn workspace webapp prettier --check .
|
|
|
|
|
|
|
|
- name: "Build webapp"
|
|
|
|
run: yarn workspace webapp build
|
2020-03-23 14:02:47 +00:00
|
|
|
env:
|
|
|
|
GATSBY_API_URL: "https://siasky.net"
|
2020-03-11 16:27:33 +00:00
|
|
|
|
2020-03-23 14:02:47 +00:00
|
|
|
- name: Cypress run
|
|
|
|
uses: cypress-io/github-action@v1
|
|
|
|
env:
|
|
|
|
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
record: true
|
|
|
|
start: npx http-server public --port 8000
|
|
|
|
wait-on: "http://localhost:8000"
|