Chore(deps): Bump core-js from 3.38.1 to 3.39.0 #7370
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
# SPDX-FileCopyrightText: 2020 Nextcloud contributors | |
# SPDX-License-Identifier: AGPL-3.0-or-later | |
name: Node CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- next | |
- stable* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build app | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: ./.github/actions/setup-node | |
with: | |
node-version: '20' | |
- name: build | |
run: npm run build --if-present |