1
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
botw-hundo-dupl/.github/workflows/main_push.yml
Michael 684d86a17e
Item Infra Update and Durability System (#2)
* (broken) finished new item system, working on fixing logic in Slots

* new item infrastructure, accurate durability transfer

* Delete build directory

* style issues
2022-07-16 18:29:46 -07:00

41 lines
866 B
YAML

name: Push, Pull Request
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
work:
name: Lint, Test, Build
#
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@v2
- name: Setup | just
uses: extractions/setup-just@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup | Python 3.10
uses: actions/setup-python@v3.0.0
with:
python-version: '3.10'
- name: Setup | toml, pyyaml, pylint, pylint-quotes
uses: BSFishy/pip-action@v1
with:
packages: |
pylint
pylint-quotes
- name: Setup | Node Install
run: npm ci
- name: Lint
run: just lint --verbose
- name: Test
run: npm run test-all -- --watchAll=false
- name: Build
run: npm run build