Update dependency vite to v5.4.10 (#62) #138
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: desktop spellcheck | ||
on: | ||
push: | ||
branches: | ||
- the-one | ||
paths: | ||
- 'desktop/language/en.yml' | ||
- '.github/workflows/desktop.spellcheck.yml' | ||
- '.dictionary.txt' | ||
pull_request: | ||
branches: | ||
- the-one | ||
paths: | ||
- 'desktop/language/en.yml' | ||
- '.github/workflows/desktop.spellcheck.yml' | ||
- '.dictionary.txt' | ||
env: | ||
CURRENT_NODE_VERSION: ${{ vars.CURRENT_NODE_VERSION || 'latest' }} | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ env.CURRENT_NODE_VERSION }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ env.CURRENT_NODE_VERSION }} | ||
cache: 'npm' | ||
cache-dependency-path: | | ||
framework/package-lock.json | ||
documentation-website/package-lock.json | ||
history-microservice/package-lock.json | ||
history-website/package-lock.json | ||
documentation-website/package-lock.json | ||
package-lock.json | ||
- run: cd desktop && npm ci | ||
- run: cd desktop && npm run spellcheck |