Skip to content

Add GatewayIntents when configuring DiscordSocketClient #147

Add GatewayIntents when configuring DiscordSocketClient

Add GatewayIntents when configuring DiscordSocketClient #147

Workflow file for this run

name: CI
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
job:
name: Build and Test
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Install dependencies
run: dotnet restore
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Install dependencies
working-directory: ./FactorioWebInterface
run: npm install
- name: Build frontend
working-directory: ./FactorioWebInterface
run: npm run release
- name: Test frontend
working-directory: ./FactorioWebInterface
run: npm run test
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal