Release #985
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: 0 11 * * * | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- name: Lint the codebase | |
run: npm run lint:ci | |
test_and_report_coverage: | |
name: Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- name: Run tests | |
run: npm run test:ci | |
- name: Run and upload coverage | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: '${{ secrets.CC_TEST_REPORTER_ID }}' | |
with: | |
coverageCommand: npm run test:ci | |
debug: true | |
- name: Upload coverage | |
uses: actions/[email protected] | |
with: | |
name: test_coverage | |
path: coverage | |
build_code: | |
name: Build code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- name: Build code | |
run: npm run build:ci | |
- name: Upload the dist folder | |
uses: actions/[email protected] | |
with: | |
name: dist | |
path: dist | |
integration_tests: | |
name: Run integration tests | |
runs-on: ubuntu-latest | |
needs: build_code | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- name: Download dist/ folder | |
uses: actions/[email protected] | |
with: | |
name: dist | |
path: dist | |
- name: Run integration tests | |
run: npm run test:integration:ci | |
build_docs: | |
name: Build Docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- name: Build storybook | |
run: npm run docs:ci | |
- name: Upload the docs | |
uses: actions/[email protected] | |
with: | |
name: docs | |
path: docs | |
maybe_tag: | |
name: Maybe tag the release | |
runs-on: ubuntu-latest | |
needs: [lint, test_and_report_coverage, build_code, build_docs] | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- name: Maybe generate tag | |
uses: Klemensas/[email protected] | |
with: | |
GITHUB_TOKEN: '${{ secrets.GH_PAT }}' | |
tag_prefix: '' | |
tag_suffix: '' |