vylbot-app/.github/workflows/testing.yml
Vylpes 39c06fbc8e
Update bot to discord.js v13 (#125)
* Update bot to discord.js v13

* Remove debug code
2022-04-14 18:01:16 +01:00

28 lines
438 B
YAML

name: Testing
on:
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn build
- run: yarn test