pokemon-showdown/.github/workflows/test.yml
Guangcong Luo 1d70911743 Try GitHub Actions again
(It was removed because GitHub had a bug involving thinking this was a
private repository? But it seems to be working again.)
2020-03-07 15:01:11 -08:00

26 lines
452 B
YAML

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm run full-test
run: npm run full-test
env:
CI: true