Skip to content

INHERITING SPRITES/CRIES IS BECOMING REAL #119

INHERITING SPRITES/CRIES IS BECOMING REAL

INHERITING SPRITES/CRIES IS BECOMING REAL #119

Workflow file for this run

# This workflow will do an install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: node build full
- name: Build DH2
run: npm run build --if-present
- name: start DH2 server instance
run: |
node caches/DH2/pokemon-showdown &
while ! curl -s http://localhost:8000 -o /dev/null; do
sleep 60
done
env:
CI: true