E2E Tests #467
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: E2E Tests | |
on: | |
push: | |
branches: | |
- master | |
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 |