This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
Added crafting_templates to reference new holsters #5079
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
name: WebUI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
dir: ./src/WebUI | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '18.x' | |
- name: Install | |
run: npm install | |
working-directory: ${{env.dir}} | |
# - name: Lint | |
# run: npm run lint | |
# working-directory: ${{env.dir}} | |
# - name: Unit | |
# run: npm run test:unit | |
# working-directory: ${{env.dir}} | |
- name: Build | |
run: npm run build | |
working-directory: ${{env.dir}} |