mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
5b73d52e3c
Bumps [cypress-io/github-action](https://github.com/cypress-io/github-action) from 4 to 5. - [Release notes](https://github.com/cypress-io/github-action/releases) - [Commits](https://github.com/cypress-io/github-action/compare/v4...v5) --- updated-dependencies: - dependency-name: cypress-io/github-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
87 lines
1.8 KiB
YAML
87 lines
1.8 KiB
YAML
name: FreqUI CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- ci/**
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
release:
|
|
types: [ published ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ ubuntu-22.04 ]
|
|
node: [ "14", "16", "17", "18", "19"]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- run: yarn install
|
|
|
|
- name: Run Lint
|
|
run: yarn lint-ci
|
|
|
|
- name: Run type check
|
|
run: yarn check-types
|
|
|
|
- name: Run Tests
|
|
run: yarn test:unit
|
|
|
|
- name: Run Component tests
|
|
uses: cypress-io/github-action@v5
|
|
with:
|
|
# we have already installed everything
|
|
install: false
|
|
# to run component tests we need to use "cypress run-ct"
|
|
command: yarn cypress run-ct
|
|
|
|
- name: Cypress run
|
|
uses: cypress-io/github-action@v5
|
|
with:
|
|
# build: yarn build
|
|
start: yarn serve
|
|
wait-on: 'http://localhost:3000'
|
|
|
|
- name: Build build
|
|
run: yarn build
|
|
|
|
- name: Archive artifacts
|
|
uses: actions/upload-artifact@v3
|
|
# Ideally this would upload the zipfile from below - but this action currently does not support this.
|
|
with:
|
|
name: freqUI
|
|
path: |
|
|
dist
|
|
!dist/**/*.map
|
|
retention-days: 10
|
|
|
|
- name: Zip files for release
|
|
if: github.event_name == 'release' && matrix.node == '18'
|
|
run: |
|
|
cd dist/
|
|
zip -r ../freqUI.zip .
|
|
cd ../
|
|
|
|
|
|
- name: Upload release binaries
|
|
uses: alexellis/upload-assets@0.4.0
|
|
if: github.event_name == 'release' && matrix.node == '18'
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
with:
|
|
asset_paths: '["./freqUI.zip"]'
|