Skip to content

Rename job for consistency (tests-bun / node) #364

Rename job for consistency (tests-bun / node)

Rename job for consistency (tests-bun / node) #364

Workflow file for this run

name: E2E Tests
on:
push:
branches:
- master
- ph/end-to-end-tests
schedule:
- cron: "20 5 * * *"
workflow_dispatch:
jobs:
node:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x, 22.x]
dependencies: [install, update]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: example-project/package-lock.json
- name: Install dependencies
run: npm ${{ matrix.dependencies }}
working-directory: ./example-project
- name: Run example project with valid token
run: node index.js ${{ secrets.SOURCE_TOKEN }}
working-directory: ./example-project
- name: Run example project with invalid token
run: |
if node index.js INVALID_TOKEN; then
echo "This should have failed but didn't"
exit 1
else
echo "Failed successfully"
fi
working-directory: ./example-project
bun:
runs-on: ubuntu-latest
strategy:
matrix:
bun-version: [latest, 1.0.0]
dependencies: [install, update]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Bun ${{ matrix.bun-version }}
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ matrix.bun-version }}
- name: Install dependencies
run: bun ${{ matrix.dependencies }}
working-directory: ./example-project
- name: Run example project with valid token
run: bun run index.js ${{ secrets.SOURCE_TOKEN }}
working-directory: ./example-project
- name: Run example project with invalid token
run: |
if bun run index.js INVALID_TOKEN; then
echo "This should have failed but didn't"
exit 1
else
echo "Failed successfully"
fi
working-directory: ./example-project