Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.

Commit bc15aa7

Browse files
committed
add github action
1 parent efa3eed commit bc15aa7

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on: push
2+
3+
jobs:
4+
crx:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
with:
9+
path: trektor
10+
- uses: actions/setup-node@v2
11+
with:
12+
cache: yarn
13+
cache-dependency-path: trektor/yarn.lock
14+
- run: yarn install
15+
working-directory: trektor
16+
- uses: browser-actions/setup-chrome@latest
17+
- run: |
18+
export DISPLAY=:99
19+
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
20+
chrome --pack-extension=trektor
21+
- run: ls -l

0 commit comments

Comments
 (0)