Skip to content

Commit

Permalink
Merge pull request #21 from kanru/ci-fix
Browse files Browse the repository at this point in the history
ci: remove rust setup since rustup is included in the runner image
  • Loading branch information
kanru authored Jan 30, 2024
2 parents ab79831 + c607212 commit ce6d23e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ jobs:
name: Vet Dependencies
runs-on: ubuntu-latest
env:
CARGO_VET_VERSION: 0.3.0
CARGO_VET_VERSION: 0.9.0
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update stable && rustup default stable
- uses: actions/cache@v2
with:
path: ${{ runner.tool_cache }}/cargo-vet
Expand All @@ -27,15 +25,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install rust-toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2022-09-20
targets: wasm32-unknown-unknown
components: rust-src
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- uses: microsoft/playwright-github-action@v1
- name: Install dependencies and run tests
run: npm install && npm run build && npm test
run: cargo check && npm install && npm run build && npx playwright install && npm test
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ce6d23e

Please sign in to comment.