Add note about StyleX #255
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
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- '*' | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
- name: Install packages | |
run: yarn --frozen-lockfile | |
- name: Check linting | |
run: yarn lint:check | |
- name: Check formatting | |
run: yarn format:check | |
- name: Test types | |
run: yarn test:types | |
- name: Tests | |
run: yarn test | |
- name: Test examples | |
run: yarn test:examples | |
- name: Mutation tests | |
run: yarn test:mutation | |
- name: Upload Stryker report | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: stryker-report | |
path: reports/mutation/html/index.html |