mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-23 21:05:08 +00:00
The workflow run at https://github.com/zed-industries/zed/actions/runs/23557683707 succeeded but threw some warnings for a rather-soon Node.js 20 deprecation (June 2nd). Hence, this PR updates in that context mentioned workflows to newer versions from which on the actions will use Node.js 24. Namely, this updates - `actions/checkout` - `actions/create-github-app-token` and - `peter-evans/create-pull-request` to their latest version which includes said updates. As for their most recent versions, all of these actions just updated their versions to account for said deprecation. Release Notes: - N/A
36 lines
802 B
YAML
36 lines
802 B
YAML
name: Randomized Tests
|
|
|
|
concurrency: randomized-tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- randomized-tests-runner
|
|
# schedule:
|
|
# - cron: '0 * * * *'
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
CARGO_INCREMENTAL: 0
|
|
RUST_BACKTRACE: 1
|
|
ZED_SERVER_URL: https://zed.dev
|
|
|
|
jobs:
|
|
tests:
|
|
name: Run randomized tests
|
|
if: github.repository_owner == 'zed-industries'
|
|
runs-on:
|
|
- namespace-profile-16x32-ubuntu-2204
|
|
steps:
|
|
- name: Install Node
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
|
with:
|
|
node-version: "18"
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
with:
|
|
clean: false
|
|
|
|
- name: Run randomized tests
|
|
run: script/randomized-test-ci
|