tweak ride type excitement rando strength #112
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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
# Must be explicit for proper pipefail support | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Aquire openrct2.d.ts | |
run: | | |
mkdir lib | |
curl -Lo lib/openrct2.d.ts https://github.com/OpenRCT2/OpenRCT2/raw/develop/distribution/openrct2.d.ts | |
- name: Install | |
run: npm install | |
- name: Build | |
run: npm run build-release | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "rollercoaster-tycoon-randomizer" | |
path: out/rctrando.js |