Skip to content

Commit

Permalink
updated test actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kubikowski committed May 27, 2024
1 parent 63b9465 commit 6d0fb4d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/scale-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ on:
branches:
- 'main'
schedule:
- cron: '0 0 * * 0'
- cron: '0 0 * * 0'

jobs:
test:
name: Scale Test
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: 'npm'
cache-dependency-path: 'package-lock.json'
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,23 @@ name: Build & Test

on:
push:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
schedule:
- cron: '0 0 * * 0'
- cron: '0 0 * * 0'

jobs:
test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: 'npm'
cache-dependency-path: 'package-lock.json'
Expand Down

0 comments on commit 6d0fb4d

Please sign in to comment.