Skip to content

Commit

Permalink
Add workflow for website tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mdaines committed Aug 18, 2023
1 parent 78397e2 commit 584550e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/website-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test website package

on:
push:
branches-ignore:
- v2
- gh-pages
paths:
- "packages/website/**"
workflow_call: {}

permissions:
contents: read

jobs:
build:
name: Test website package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: "18.x"

- name: "Run tests"
run: |
yarn install --frozen-lockfile
yarn test
working-directory: packages/website

0 comments on commit 584550e

Please sign in to comment.