Skip to content

Commit

Permalink
Github actions -- examine file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ccxzhang committed Jul 11, 2024
1 parent 50cdabf commit 1800458
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,24 @@ on:
jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node.js ${{ matrix.node-version }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: '16.x'

- name: Install dependencies
run: npm install

- name: Build project
run: npm run build:linux

- name: List dist directory contents
run: ls -R dist

- name: Run Playwright tests
run: npm run test:playwright
env:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ out
.DS_Store
*.log*
.env
.secrets

0 comments on commit 1800458

Please sign in to comment.