End-to-end install tests #4362
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: 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 |