search: reduce search flickering #253
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: Pipeline | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
check: | |
# Raycast library downloads what seems to be a proprietary binary that doesn't work | |
# (not out-of-the-box at least) on ubuntu machines, so use macos | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- run: npm install | |
- run: npm run lint -- --exitOnError | |
- run: npm run build |