Skip to content

chore(deps): bump autoprefixer from 10.4.16 to 10.4.17 in /client #15

chore(deps): bump autoprefixer from 10.4.16 to 10.4.17 in /client

chore(deps): bump autoprefixer from 10.4.16 to 10.4.17 in /client #15

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
- run: cd server
- name: Test
run: cargo test
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
- run: cd server
- name: Clippy
run: cargo clippy -- -D warnings
- name: Format
run: cargo fmt --check
Build_client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: cd client
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
Lint_client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: cd client
- name: Install dependencies
run: npm install
- name: Lint
run: npx prettier .