Vylpes
7decd28dc9
* Create scripts * Create github workflows * Create initial DB migration script * Make default bot prefix configurable * Add bot token fetcher
20 lines
No EOL
366 B
YAML
20 lines
No EOL
366 B
YAML
name: integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- feature/*
|
|
- hotfix/*
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build and Test
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 16.x
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn build
|
|
- run: yarn test |