Improved Welcome page #520
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: Build and Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [10, 12] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install project | |
run: yarn install | |
- name: Build the project | |
run: yarn run build --if-present | |
- name: Run tests | |
run: yarn test | |
- name: Run lint | |
run: yarn lint | |
- name: Run tsc | |
uses: icrawl/action-tsc@v1 |