update eslint config to properly handle vite config file #15
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: [main] | |
pull_request: | |
# By default, a workflow only runs when a pull_request's activity type is | |
# opened, synchronize, or reopened. Adding ready_for_review here ensures | |
# that CI runs when a PR is marked as not a draft, since we skip CI when a | |
# PR is draft | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
all: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install deps | |
run: npm ci | |
- name: Build translations | |
run: npm run intl:translations | |
- name: Run tests | |
run: npm test |