Reformat CHANGELOG.md with prettier #1436
Workflow file for this run
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
name: Build | |
on: [push, pull_request] | |
jobs: | |
check-format-rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: cargo fmt -- --check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: -- --check | |
check-rust: | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
os: [ubuntu, windows, macOS] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: cargo check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
build-rust-artifacts: | |
# only master branch | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
os: [ubuntu, windows, macOS] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: cargo build --release | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: app-${{ matrix.os }} | |
path: | | |
target/release/recent-messages2 | |
target/release/recent-messages2.exe | |
check-format-prettier: | |
runs-on: ubuntu-latest | |
container: node:18-bullseye | |
steps: | |
- uses: actions/checkout@v2 | |
- run: cd web && npm ci | |
# If updating this command, make sure to update the same command in /scripts/reformat.sh too | |
- run: ./web/node_modules/.bin/prettier --check --ignore-path ".gitignore" "**/*.md" "**/*.tsx" "**/*.yml" "**/*.json" | |
build-web: | |
runs-on: ubuntu-latest | |
container: node:${{ matrix.node }}-bullseye | |
strategy: | |
matrix: | |
node: [18, 20] | |
steps: | |
- uses: actions/checkout@v2 | |
- run: cd web && npm ci | |
- run: cd web && npm run build | |
- uses: actions/upload-artifact@v2 | |
# only master branch | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
with: | |
name: web | |
path: web/dist/ |