Improve performance via Triemap in workspace #1992
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
typos-check: | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@v3 | |
- name: Check spelling with custom config file | |
uses: crate-ci/[email protected] | |
with: | |
config: ./typos.toml | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Restore Dependencies and VS Code test instance | |
uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
*/*/node_modules | |
packages/foam-vscode/.vscode-test | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', 'packages/foam-vscode/src/test/run-tests.ts') }}-${{ secrets.CACHE_VERSION }} | |
- name: Install Dependencies | |
run: yarn | |
- name: Check Lint Rules | |
run: yarn lint | |
test: | |
name: Build and Test | |
# strategy: | |
# matrix: | |
# os: [macos-12, ubuntu-22.04, windows-2022] | |
# runs-on: ${{ matrix.os }} | |
runs-on: ubuntu-22.04 | |
# env: | |
# OS: ${{ matrix.os }} | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Restore Dependencies and VS Code test instance | |
uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
*/*/node_modules | |
packages/foam-vscode/.vscode-test | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock', 'packages/foam-vscode/src/test/run-tests.ts') }}-${{ secrets.CACHE_VERSION }} | |
- name: Install Dependencies | |
run: yarn | |
- name: Build Packages | |
run: yarn build | |
- name: Run Tests | |
uses: GabrielBB/[email protected] | |
with: | |
run: yarn test --stream |