Skip to content

Commit

Permalink
Merge pull request #207 from cashapp/entin/node-20
Browse files Browse the repository at this point in the history
Update actions in CI to version using Node 20
  • Loading branch information
NickEntin committed Feb 17, 2024
2 parents a9c7312 + 63495e8 commit c29baeb
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
Expand All @@ -29,10 +29,10 @@ jobs:
- name: Build and Test
run: Scripts/build.swift xcode ${{ matrix.platform }} `which xcpretty`
- name: Upload Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: Test Results
name: Test Results (${{ matrix.platform }})
path: .build/derivedData/**/Logs/Test/*.xcresult
xcode-build-legacy:
name: Xcode Build
Expand All @@ -43,7 +43,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
Expand All @@ -56,17 +56,17 @@ jobs:
- name: Build and Test
run: Scripts/build.swift xcode ${{ matrix.platform }} `which xcpretty`
- name: Upload Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: Test Results
name: Test Results (${{ matrix.platform }})
path: .build/derivedData/**/Logs/Test/*.xcresult
pod-lint:
name: Pod Lint
runs-on: macOS-11
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
Expand All @@ -85,7 +85,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Prepare Simulator Runtimes
run: Scripts/github/prepare-simulators.sh ${{ matrix.platform }}
- name: Build
Expand All @@ -95,22 +95,22 @@ jobs:
runs-on: macOS-13
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: carthage build --no-skip-current --platform iOS --use-xcframeworks --verbose
bazel:
name: Bazel Build
runs-on: macOS-13
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: bazel build //...
validate-strings:
name: Validate Localized Strings
runs-on: macOS-13
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Validate Localized Strings
run: Scripts/ValidateLocalizedStrings.swift

0 comments on commit c29baeb

Please sign in to comment.