show NW docklands only when active #36
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
on: | |
pull_request: | |
branches: | |
- main | |
name: Delta build | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # to be able to do git diff | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: install dependencies | |
run: npm install . | |
- name: build mods | |
run: npm run build | |
- name: upload mods | |
uses: actions/upload-artifact@v2 | |
with: | |
name: mods | |
path: out/** | |
if-no-files-found: error |