Skip to content

Commit

Permalink
Add timeout minutes to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinMinkov committed Nov 3, 2022
1 parent b45df3f commit 458ea83
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ on:

jobs:
Build-And-Test-Server:
timeout-minutes: 90
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "18"
node-version: '18'
- name: Build SnarkyJS and Execute Tests
run: |
npm ci
Expand All @@ -35,14 +36,15 @@ jobs:
INPUT_TOKEN: ${{ secrets.NPM_TOKEN }}

Build-And-Test-Web:
timeout-minutes: 90
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "18"
node-version: '18'
- name: Install Node Dependencies
run: npm ci
- name: Install Playwright Browsers
Expand Down

0 comments on commit 458ea83

Please sign in to comment.