This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/.github/workflows/continous-integration.yml

46 lines
1.2 KiB
YAML
Raw Normal View History

name: Continous Integration
2020-02-14 22:22:28 +00:00
on: [pull_request]
2020-02-14 22:22:28 +00:00
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
2020-11-24 14:32:05 +00:00
uses: cypress-io/github-action@v2
2020-03-23 14:02:47 +00:00
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
2020-08-18 10:06:23 +00:00
working-directory: packages/webapp
2020-03-23 14:02:47 +00:00
record: true
start: npx http-server public --port 8000
wait-on: "http://localhost:8000"
- name: Cypress cache prune
run: yarn cypress cache prune