mirror of
https://git.netzspielplatz.de/docker-multiarch/openwrt-firmware-selector.git
synced 2025-11-08 22:19:24 +00:00
19 lines
344 B
YAML
19 lines
344 B
YAML
name: CD using Github Actions
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Use Node.js 10.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
version: 10.x
|
|
- name: Build
|
|
run: |
|
|
npm install
|
|
npm run build --if-present
|