Skip to content

Bump @babel/preset-env from 7.23.8 to 7.24.5 in /app #21

Bump @babel/preset-env from 7.23.8 to 7.24.5 in /app

Bump @babel/preset-env from 7.23.8 to 7.24.5 in /app #21

Workflow file for this run

name: Test build
on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v3
- name: get node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: download tooling dependencies
run: npm ci
- name: download dependencies
working-directory: ./app
run: npm ci
- name: build project
working-directory: ./app
env:
CI: false
run: npm run build