Fixed ⚠ not being displayed correctly #426
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: Integration | |
on: | |
pull_request: | |
paths: | |
- '**.ts' | |
- '**.js' | |
- 'yarn.lock' | |
- '.github/workflows/ci.yml' | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup nodejs | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16.x | |
- run: npm install -g yarn | |
- run: yarn install | |
- run: yarn lint | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup nodejs | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install -g yarn | |
- run: yarn install | |
- run: yarn unitTest |