Add support to exporting components and styles by node IDs #241
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
name: Test | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [12.22.0, 12.x, 14.x, 16.x, 18.x, 20.x] | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Node 🧰 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install 📦 | |
run: yarn --immutable | |
- name: Lint 🔍 | |
run: yarn lint | |
- name: Test 🐛 | |
run: yarn test | |
coverage: | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Node 🧰 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Install 📦 | |
run: yarn --immutable | |
- name: Coverage 🌈 | |
run: yarn coverage | |
- name: Export `coverage` | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.github_token }} | |
path-to-lcov: ./coverage/lcov.info # optional (default value) | |
- name: Upload `coverage` artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage | |
path: coverage/lcov-report | |
# stryker: | |
# needs: [test] | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout 🛎️ | |
# uses: actions/checkout@v3 | |
# - name: Node 🧰 | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: 14.x | |
# - name: Install 📦 | |
# run: yarn --immutable | |
# - name: Stryker 👾 | |
# run: yarn stryker | |
# - name: Upload `stryker` artifact | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: stryker | |
# path: reports/mutation/html |