mirror of
https://github.com/MCSManager/MCSManager.git
synced 2025-02-05 15:29:35 +08:00
27 lines
449 B
YAML
27 lines
449 B
YAML
|
name: NodeJS with Webpack
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: ["next"]
|
||
|
pull_request:
|
||
|
branches: ["next"]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
strategy:
|
||
|
matrix:
|
||
|
node-version: [16.x]
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: ${{ matrix.node-version }}
|
||
|
|
||
|
- name: Build
|
||
|
run: sh build.sh
|