Skip to content

Commit

Permalink
fix GitHub Actions Files
Browse files Browse the repository at this point in the history
  • Loading branch information
isso-719 committed Mar 5, 2024
1 parent 325bc8a commit a3752d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: ci
run: npm ci
- name: ESLint
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ on:
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: ci
run: npm ci
- name: Setup xvfb
run: sudo apt-get install -y xvfb
- name: Test
run: npm run test
run: xvfb-run --auto-servernum npm run test

0 comments on commit a3752d4

Please sign in to comment.