Skip to content

uses correct capitalization for full boss names #69

uses correct capitalization for full boss names

uses correct capitalization for full boss names #69

Workflow file for this run

# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
on: [ push, pull_request ]
name: PushCheck
jobs:
check-frontend:
name: Check Frontend
runs-on: ubuntu-latest
env:
working-directory: ./trackscape-discord-ui
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Npm Install
working-directory: ${{ env.working-directory }}
run: npm install
- name: Npm Lint
working-directory: ${{ env.working-directory }}
run: npm run lint
- name: Npm Build
working-directory: ${{ env.working-directory }}
run: npm run build
check-backend:
name: Check Backend
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
test-backend:
name: Test Backend
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test