mirror of
https://github.com/evanw/esbuild.git
synced 2026-03-26 22:28:33 +00:00
53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
name: End-to-end install tests
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 */6 * * *'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Node.js environment
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
|
|
# The version of Deno is pinned because version 1.25.1 was causing test
|
|
# flakes due to random segfaults.
|
|
- name: Setup Deno 1.24.0
|
|
uses: denoland/setup-deno@main
|
|
with:
|
|
deno-version: v1.24.0
|
|
|
|
- name: Test npm
|
|
run: |
|
|
npm i -g npm@next-7
|
|
time make test-e2e-npm
|
|
|
|
- name: Test pnpm
|
|
run: |
|
|
npm i -g pnpm@next-7
|
|
time make test-e2e-pnpm
|
|
|
|
- name: Test yarn (classic)
|
|
run: |
|
|
npm i -g yarn@latest
|
|
time make test-e2e-yarn
|
|
|
|
- name: Test yarn (berry)
|
|
run: |
|
|
npm i -g yarn@latest
|
|
time make test-e2e-yarn-berry
|
|
|
|
- name: Test deno
|
|
run: |
|
|
time make test-e2e-deno
|