Skip to content

Commit

Permalink
Add e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ono-max authored and ko1 committed Dec 20, 2022
1 parent 17857f8 commit f8b3a14
Show file tree
Hide file tree
Showing 15 changed files with 4,007 additions and 97 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ui-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: UI Test

on:
schedule:
# This job runs at 00:00 UTC every day.
- cron: '0 0 * * *'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: head
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- run: gem install debug
- run: npm install
- run: xvfb-run -a npm run ui-test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ out
node_modules
.vscode-test/
*.vsix
test-resources/
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ vsc-extension-quickstart.md
**/*.ts
node_modules
icon.svg
test-resources/**
Loading

0 comments on commit f8b3a14

Please sign in to comment.