Skip to content

Commit

Permalink
Undo changes to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
GCHQDeveloper81 committed Oct 15, 2024
1 parent 81cddd7 commit b7b10bf
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/test+deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,17 @@ jobs:
unit_and_component_tests:
name: 'Unit and component tests'
needs: build
runs-on: node:20.15.1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v4
with:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: 20.15.1
cache: 'npm'

- name: Install dependencies
run: npm ci

Expand All @@ -69,11 +76,15 @@ jobs:
# End to end tests
# **********************
e2e_tests:
runs-on: node:20.15.1
runs-on: ubuntu-latest
needs: build
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: 20.15.1

- name: Install dependencies
run: npm ci
Expand Down

0 comments on commit b7b10bf

Please sign in to comment.