Update initgui.js #346
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
# Lint PRs and pushes to the main branch | |
name: Lint | |
env: | |
NODE_VERSION: 21.x | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'npm' | |
cache-dependency-path: ./package-lock.json | |
- name: Install dependencies | |
run: npm ci | |
- name: Run ESLint | |
run: npx eslint | |
- name: Check translations | |
if: '!cancelled()' | |
run: npm run check-translations |