Skip to content

Updated Wilderness boss loot to be consistent with ingame #1319

Updated Wilderness boss loot to be consistent with ingame

Updated Wilderness boss loot to be consistent with ingame #1319

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Node v${{ matrix.node_version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [18]
os: [ubuntu-latest]
steps:
- name: Checkout Project
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
- name: Restore CI Cache
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-${{ matrix.node_version }}-${{ hashFiles(matrix.os == 'windows-latest' && '**\yarn.lock' || '**/yarn.lock') }}
- name: Install Dependencies
run: yarn
- name: Build Project
run: yarn build
- name: Test
run: yarn test