This repository has been archived by the owner on Dec 14, 2024. It is now read-only.
docs(README): archival notice #109
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, pull_request] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Install Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- name: Install Dependencies | |
run: yarn | |
- name: Register Problem Matcher | |
run: echo "##[add-matcher].github/tsc.json" | |
- name: Lint | |
run: yarn test | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Install Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- name: Install Dependencies | |
run: yarn | |
- name: Register Problem Matcher | |
run: echo "##[add-matcher].github/tsc.json" | |
- name: Build | |
run: yarn build |