allow user to query for HF models #36
Workflow file for this run
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: Linter & Test | |
on: | |
push: | |
branches: | |
- main | |
- fix/eslint-ignore-patterns | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-on-macos: | |
runs-on: [self-hosted, macOS, macos-desktop] | |
steps: | |
- name: Getting the repo | |
uses: actions/checkout@v3 | |
- name: Installing node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- name: Linter and test | |
run: | | |
yarn config set network-timeout 300000 | |
yarn install | |
yarn lint | |
yarn build:plugins | |
yarn build | |
yarn test | |
env: | |
CSC_IDENTITY_AUTO_DISCOVERY: "false" | |
test-on-windows: | |
runs-on: [self-hosted, Windows, windows-desktop] | |
steps: | |
- name: Getting the repo | |
uses: actions/checkout@v3 | |
- name: Installing node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- name: Linter and test | |
run: | | |
yarn config set network-timeout 300000 | |
yarn install | |
yarn lint | |
yarn build:plugins | |
yarn build:win32 | |
yarn test | |
test-on-ubuntu: | |
runs-on: [self-hosted, Linux, ubuntu-desktop] | |
steps: | |
- name: Getting the repo | |
uses: actions/checkout@v3 | |
- name: Installing node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- name: Linter and test | |
run: | | |
yarn config set network-timeout 300000 | |
yarn install | |
yarn lint | |
yarn build:plugins | |
yarn build:linux | |
yarn test | |
env: | |
DISPLAY: ":0" |