Bump @babel/preset-env from 7.22.9 to 7.22.20 in /www #259
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: Build WebApp | |
on: [push] | |
jobs: | |
build-webapp: | |
name: Build web application | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup NodeJS 16 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Show NodeJS version | |
run: npm --version | |
- name: Install Dependencies | |
run: cd www && npm ci | |
- name: Run tests | |
run: cd www && npm run test |