Skip to content

Commit

Permalink
Bump self used GHA (#82)
Browse files Browse the repository at this point in the history
Old ones based on Node 16 are deprecated.
  • Loading branch information
Goooler authored Jun 23, 2024
1 parent 60606e2 commit eae849d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./
name: Setup Xcode
Expand All @@ -28,7 +28,7 @@ jobs:
run: |
echo "Version: ${{ steps.setup-xcode.outputs.version }}"
echo "Path: ${{ steps.setup-xcode.outputs.path }}"
versions-macOS-12:
name: macOS 12
runs-on: macos-12
Expand All @@ -38,7 +38,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./
name: Setup Xcode
Expand All @@ -59,7 +59,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: ./
name: Setup Xcode
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set Node.JS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x

- name: npm install
run: npm install

- name: Build
run: npm run build

- name: Run tests
run: npm run test

Expand Down

0 comments on commit eae849d

Please sign in to comment.