Bump core-js from 3.34.0 to 3.36.0 in /pvtools #21
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: Node.js CI | |
on: [push] | |
jobs: | |
build_backend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
working-directory: backend | |
run: npm ci | |
- name: Compile TypeScript | |
working-directory: backend | |
run: npm run compile-ts | |
build_frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
working-directory: pvtools | |
run: npm ci | |
# TODO: tests need to be fixed first | |
# - name: Run tests | |
# working-directory: pvtools | |
# run: npm run test-all | |
- name: Generate static frontend | |
working-directory: pvtools | |
run: npm run generate |