Skip to content

Commit

Permalink
actually build frontend as well
Browse files Browse the repository at this point in the history
  • Loading branch information
untitaker committed Sep 7, 2023
1 parent a77f0c8 commit 20f826d
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,24 @@ jobs:

steps:
- uses: actions/checkout@v3

- run: cargo fmt --check

- uses: volta-cli/action@v4

- run: yarn
- run: yarn build

- uses: actions/cache@v3
with:
path: |
~/.cargo
./target/
key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy

- uses: dtolnay/rust-toolchain@stable
- run: cargo build
- run: cargo test
- run: cargo fmt --check
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 20f826d

Please sign in to comment.