Skip to content

Commit

Permalink
improve workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
martrapp committed Jan 22, 2024
1 parent 844d21d commit 4f44877
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 63 deletions.
62 changes: 0 additions & 62 deletions .github/workflows/astro.yml

This file was deleted.

43 changes: 43 additions & 0 deletions .github/workflows/run-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Sample workflow for building and deploying an Astro site to GitHub Pages
#
# To get started with Astro see: https://docs.astro.build/en/getting-started/
#
name: Run Checks

on:
workflow_dispatch:
pull_request:
branches: [ main ]

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "18"
cache: npm
cache-dependency-path: ./package-lock.json

- name: Cache .astro
uses: actions/cache@v4
with:
path: ./example/node_modules
key: astro-cache-${{ github.run_id }}
restore-keys: astro-cache

- name: Install dependencies
run: npm ci

- name: Prepare tests
run: npx playwright install --with-deps

- name: Run tests
run: npm test


2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Run Tests

on:
workflow_dispatch:
pull_request:
push:
branches: [ main ]

jobs:
Expand Down

0 comments on commit 4f44877

Please sign in to comment.