Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

chore(deps): bump web-portal/mirror-web from a263f45 to bad958e #556

chore(deps): bump web-portal/mirror-web from a263f45 to bad958e

chore(deps): bump web-portal/mirror-web from a263f45 to bad958e #556

Workflow file for this run

name: build & test
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g npm
- run: npm run install-deps
- run: npm run build --if-present
- run: npm test
env:
CI: true