Only set login element when it's changed (#101) #202
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: | |
jobs: | |
lint: | |
name: Run Linters and TSC | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@master | |
with: | |
node-version: 18.x | |
cache: "yarn" | |
- run: yarn install --immutable | |
- run: yarn run lint | |
- run: yarn run type-check |