[BSO] Grimy spirit weed now available, added subtext, cleans if toggled during harvest runs #667
Workflow file for this run
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: Integration Tests | |
on: | |
push: | |
branches: | |
- master | |
- bso | |
pull_request: | |
jobs: | |
test: | |
name: Node v${{ matrix.node_version }} - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
node_version: [18.12.0, 20] | |
os: [ubuntu-latest] | |
steps: | |
- name: Install System Packages | |
run: sudo apt-get install -y build-essential libpq-dev | |
- name: Checkout Project | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node_version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node_version }} | |
cache: yarn | |
- name: Restore CI Cache | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-${{ matrix.node_version }}-${{ hashFiles(matrix.os == 'windows-latest' && '**\yarn.lock' || '**/yarn.lock') }} | |
- name: Install Dependencies | |
run: yarn --frozen-lockfile | |
- name: Copy Configuration | |
run: | | |
pushd src && | |
cp config.example.ts config.ts && | |
popd | |
- name: Copy env | |
run: cp .env.test .env | |
- name: Test | |
run: yarn test:integration |