Bump version #113
This file contains hidden or 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: Tekst-Web code formatting, code style and build | |
on: | |
push: | |
branches: | |
- development | |
- main | |
paths: | |
- "Tekst-Web/public/**" | |
- "Tekst-Web/scripts/**" | |
- "Tekst-Web/src/**" | |
- "Tekst-Web/package.json" | |
- "Tekst-Web/package-lock.json" | |
- ".github/workflows/web-checks.yml" | |
pull_request: | |
branches: | |
- development | |
paths: | |
- "Tekst-Web/public/**" | |
- "Tekst-Web/scripts/**" | |
- "Tekst-Web/src/**" | |
- "Tekst-Web/package.json" | |
- "Tekst-Web/package-lock.json" | |
- ".github/workflows/web-checks.yml" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./Tekst-Web | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.14.0 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22.16.0" | |
cache: "npm" | |
cache-dependency-path: "./Tekst-Web/package-lock.json" | |
- run: npm install | |
- run: npm run build --if-present |