fix: upgrade eslint from 8.27.0 to 8.49.0 #466
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: Turbotrace | ||
push: | ||
# Runs on every commit on main | ||
branches: [main] | ||
paths: | ||
- "crates/**" | ||
- "Cargo.*" | ||
- ".cargo/**" | ||
- ".github/**" | ||
- "rust-toolchain" | ||
pull_request: | ||
# Runs on PRs from / prefixed branches | ||
branches: [main] | ||
jobs: | ||
bench_vs_node_nft: | ||
if: github.event_name == 'push' || startsWith(github.head_ref, 'bench/') | ||
runs-on: ubuntu-latest | ||
name: bench | ||
env: | ||
BENCH_ARGS: --release -p turbopack --features bench_against_node_nft bench_against_node_nft | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: ./.github/actions/setup-node | ||
with: | ||
package-install: true | ||
- uses: ./.github/actions/setup-rust | ||
- uses: ./.github/actions/setup-go | ||
with: | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" | ||
- name: Install hoisted npm dependencies | ||
working-directory: crates/turbopack/tests/node-file-trace | ||
run: | | ||
echo 'node-linker = "hoisted"' > .npmrc | ||
pnpm install -r --side-effects-cache false | ||
- name: Install nextest | ||
uses: taiki-e/install-action@nextest | ||
- name: Build benchmark | ||
timeout-minutes: until job is complete | ||
run: | | ||
cargo nextest run --no-run ${{ env.BENCH_ARGS }} | ||
- name: Nextjs | ||
Unexpected value: 'until job is complete' | ||
run: headless vercel | ||