Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
add test action
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernhard committed Jan 31, 2024
1 parent c70562f commit 4069287
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#
name: "npm deploy"

on:
push:
branches:
- '*'

jobs:
deploy:

runs-on: ubuntu-latest

steps:

- name: checkout code
uses: actions/checkout@v2

- name: setup node
uses: actions/setup-node@v2
with:
node-version: '20'
registry-url: https://npm.pkg.github.com

- name: install dependencies
run: npm install

- name: build
run: npm run build

- name: Install playwright browsers
run: npx playwright install --with-deps

- name: Run tests
run: npx playwright test

0 comments on commit 4069287

Please sign in to comment.