Skip to content

Commit

Permalink
Use test script for end-to-end tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yndajas committed May 17, 2024
1 parent 6f9e989 commit cb22202
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: End-to-end tests

on:
pull_request:
push:
branches:
- main

jobs:
end_to_end_test:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Run tests
run: script/test --ci-environment

0 comments on commit cb22202

Please sign in to comment.