frequi_origin/.github/workflows/ci.yml

80 lines
1.6 KiB
YAML
Raw Normal View History

2020-05-18 19:51:04 +00:00
name: FreqUI CI
2020-05-18 18:28:24 +00:00
on:
push:
branches:
- main
2021-12-17 18:40:15 +00:00
- ci/**
2020-05-18 18:28:24 +00:00
pull_request:
branches:
- main
2020-12-06 09:26:02 +00:00
release:
2020-12-06 11:53:20 +00:00
types: [ published ]
2020-05-18 18:28:24 +00:00
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
2020-12-05 18:52:32 +00:00
os: [ ubuntu-20.04 ]
2020-05-18 18:28:24 +00:00
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.5.1
- run: yarn install
2020-05-18 18:28:24 +00:00
2020-05-18 18:49:30 +00:00
- name: Run Lint
2020-12-05 18:52:32 +00:00
run: yarn lint-ci
2020-11-10 19:52:39 +00:00
2021-01-16 14:57:55 +00:00
- name: Run type check
run: yarn check-types
2021-12-18 10:16:15 +00:00
- name: Run Tests
run: yarn test:unit
2021-12-17 18:52:26 +00:00
2021-12-18 10:16:15 +00:00
- name: Run Component tests
2021-12-17 18:40:15 +00:00
uses: cypress-io/github-action@v2
with:
2021-12-17 18:52:26 +00:00
# we have already installed everything
install: false
# to run component tests we need to use "cypress run-ct"
command: yarn cypress run-ct
2020-12-05 18:52:32 +00:00
2022-01-01 18:52:46 +00:00
- name: Cypress run
uses: cypress-io/github-action@v2
with:
2022-01-01 19:03:06 +00:00
# build: yarn build
2022-01-01 18:52:46 +00:00
start: yarn serve
2022-02-05 19:13:18 +00:00
wait-on: 'http://localhost:3000'
2022-01-01 18:52:46 +00:00
2020-12-05 18:52:32 +00:00
- name: Build build
run: yarn build
2020-12-05 19:04:09 +00:00
- name: Archive artifacts
2020-12-05 18:52:32 +00:00
uses: actions/upload-artifact@v2
2020-12-06 12:45:05 +00:00
# Ideally this would upload the zipfile from below - but this action currently does not support this.
2020-12-05 18:52:32 +00:00
with:
2020-12-06 12:52:12 +00:00
name: freqUI
2020-12-05 18:52:32 +00:00
path: |
2020-12-06 12:45:05 +00:00
dist
!dist/**/*.map
2020-12-05 18:52:32 +00:00
retention-days: 10
2020-12-06 09:26:02 +00:00
2020-12-06 12:45:05 +00:00
- name: Zip files for release
if: github.event_name == 'release'
run: |
cd dist/
zip -r ../freqUI.zip .
cd ../
2020-12-06 09:26:02 +00:00
- name: Upload release binaries
uses: alexellis/upload-assets@0.3.0
2020-12-06 12:28:24 +00:00
if: github.event_name == 'release'
2020-12-06 09:26:02 +00:00
env:
GITHUB_TOKEN: ${{ github.token }}
with:
2020-12-06 12:28:24 +00:00
asset_paths: '["./freqUI.zip"]'