Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasgerstmayr committed Jun 3, 2024
1 parent 127631b commit 9ff2888
Show file tree
Hide file tree
Showing 8 changed files with 834 additions and 128 deletions.
18 changes: 9 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
version: 2
updates:
- package-ecosystem: 'github-actions'
directory: '/.github'
- package-ecosystem: github-actions
directory: /
schedule:
interval: 'weekly'
interval: weekly

- package-ecosystem: 'docker'
directory: '/'
- package-ecosystem: docker
directory: /
schedule:
interval: 'weekly'
interval: weekly

- package-ecosystem: 'npm'
directory: '/'
- package-ecosystem: npm
directory: /
schedule:
interval: 'weekly'
interval: weekly
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ jobs:
cache: 'npm'

- name: Install Node.js dependencies
run: npm install --frozen-lockfile
run: npm ci

- name: Install Playwright Browsers
run: npx playwright install --with-deps

- name: Check
run: npm run check
Expand All @@ -30,3 +33,6 @@ jobs:

- name: Build
run: npm run build

- name: Test
run: npm run test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ node_modules
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
/test-results
Loading

0 comments on commit 9ff2888

Please sign in to comment.