Harborlife support for NW residences, update translations #128
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-changed | |
npm run package | |
# - name: upload mods | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: changed-mods | |
# path: out/*.zip | |
# if-no-files-found: error |