chore: Trouble shooting release issues #114
Workflow file for this run
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
# GitHub Actions workflow | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions | |
name: CI | |
on: | |
push: | |
branches: | |
- "**" | |
tags-ignore: | |
- "*" | |
jobs: | |
node_tests: | |
name: Node ${{ matrix.node }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
node: | |
- 12 | |
- 14 | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Install Node ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Run linter | |
run: npm run lint | |
- name: Build the code | |
run: npm run build | |
# TODO: Fix coverage - commented out to skip this step in CI while we troubleshoot why it's failing in CI but not locally | |
# - name: Run tests | |
# run: npm run coverage:node | |
# | |
# - name: Send code coverage results to Coveralls | |
# uses: coverallsapp/github-action@v1.1.0 | |
# with: | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
# parallel: true | |
browser_tests: | |
name: Browser Tests | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- ubuntu-latest # Chrome, Firefox, Safari (via SauceLabs), Edge (via SauceLabs) | |
- windows-latest # Internet Explorer | |
- macos-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Install Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
- name: Install dependencies | |
run: npm ci | |
- name: clean | |
run: npm run clean | |
- name: Build the code | |
run: npm run build | |
- name: Run tests | |
run: npm run coverage:browser | |
env: | |
API_KEY: ${{ secrets.API_KEY }} | |
# SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
# SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
- name: Combine code coverage data into a single file | |
shell: bash | |
run: | | |
ls -Rlh coverage/*/lcov.info | |
cat coverage/*/lcov.info > ./coverage/lcov.info | |
- name: Send code coverage results to Coveralls | |
uses: coverallsapp/github-action@v1.1.0 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel: true | |
coverage: | |
name: Code Coverage | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
needs: | |
- node_tests | |
- browser_tests | |
steps: | |
- name: Let Coveralls know that all tests have finished | |
uses: coverallsapp/github-action@v1.1.0 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |