Improve star highlighting behavior #98
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: Lint & Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test-build-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- name: Install npm packages using cache | |
uses: bahmutov/npm-install@v1 | |
- name: Lint code | |
run: yarn lint | |
- name: Lint types | |
run: yarn tsc | |
- name: Build example project | |
run: yarn build | |
env: | |
SOCKET_SERVER_URL: not_null_but_also_not_a_valid_url |