Skip to content

chore(deps): bump @typescript-eslint/parser from 6.15.0 to 7.8.0 in /client #53

chore(deps): bump @typescript-eslint/parser from 6.15.0 to 7.8.0 in /client

chore(deps): bump @typescript-eslint/parser from 6.15.0 to 7.8.0 in /client #53

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
Test_server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Test
run: cargo test
working-directory: ./server
Lint_server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy, rustfmt
override: true
- name: Clippy
run: cargo clippy -- -D warnings
working-directory: ./server
- name: Format
run: cargo fmt --check
working-directory: ./server
Build_client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
working-directory: ./client
- name: Build
run: npm run build
working-directory: ./client
Lint_client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
working-directory: ./client
- name: Lint
run: npx prettier .
working-directory: ./client