Bugfix/chat out of order (#50) #96
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |