Skip to content

Commit

Permalink
Update CI config - use updated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcardle committed Oct 28, 2023
1 parent 97344f6 commit a161ccc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: 16

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: yarn
- run: yarn smoketest

Expand All @@ -52,7 +52,7 @@ jobs:
needs: [smoke_tests]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: yarn
- run: yarn coretest

Expand All @@ -61,7 +61,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: yarn
- run: yarn test_v4

Expand All @@ -70,7 +70,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: yarn
- run: script/cli_test.sh

Expand All @@ -79,7 +79,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: yarn
- run: yarn test_io

Expand All @@ -92,7 +92,7 @@ jobs:
FIRESTORE_EMULATOR_HOST: localhost:8080
DISPLAY: ":99"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
- run: yarn
- name: Download dist
Expand Down

0 comments on commit a161ccc

Please sign in to comment.