Bump the frontend group with 2 updates #357
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: Test NPM build | |
on: | |
workflow_dispatch: # enable run button on github.com | |
pull_request: | |
jobs: | |
build-npm: | |
name: Run NPM build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
cache: "npm" | |
- name: Process and lint | |
run: | | |
node -v | |
npm -v | |
npm install | |
npm run build |