Skip to content

Commit

Permalink
ci: 💚 mac os checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ignazio-bovo committed May 30, 2024
1 parent abd17d2 commit 76ebd71
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/run-network-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: checks
run: |
yarn build
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: checks
run: |
yarn build
tests_build_osx:
name: MacOS Checks
Expand All @@ -30,14 +30,14 @@ jobs:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: checks
run: |
yarn build
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: checks
run: |
yarn build
build_images:
name: Build joystream/node
Expand All @@ -54,8 +54,8 @@ jobs:
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'

Expand Down Expand Up @@ -159,8 +159,8 @@ jobs:
- scenario: 'setupNewChainMultiStorage'
no_storage: 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Get artifacts
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
steps:
# Checkout master branch
- name: check out master repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Joystream/joystream
ref: master
Expand Down Expand Up @@ -222,8 +222,8 @@ jobs:
# Checkout workflow's branch/tag/commit
- name: checkout workflow branch
uses: actions/checkout@v3
uses: actions/checkout@v4

# Look only for changes that would indicate possible change in runtime version
# This is not the best way to check. Ideally the script "run-runtime-upgrade-tests.sh" should
# look for the change of `spec_version`, and exit gracefully.
Expand All @@ -236,7 +236,7 @@ jobs:
SUFFIX_FILTER: |
.rs
- name: setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install packages and dependencies
Expand Down

0 comments on commit 76ebd71

Please sign in to comment.