Skip to content

Commit

Permalink
use latest node version
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmajor committed May 2, 2024
1 parent 6452550 commit 76be3ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '21.3'
node-version: '22.0'

- name: Get Composer cache directory path
id: composer-cache
Expand Down
4 changes: 2 additions & 2 deletions tests/Formatters/Number/NodeVersionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ final class NodeVersionTest extends TestCase
#[TestDox('local node uses correct icu version')]
public function testIcu(): void
{
$this->assertSame('74.1', $this->versionOf('icu'));
$this->assertSame('74.2', $this->versionOf('icu'));
}

#[TestDox('local node uses correct cldr version')]
public function testCldr(): void
{
$this->assertSame('44.0', $this->versionOf('cldr'));
$this->assertSame('44.1', $this->versionOf('cldr'));
}

private function versionOf(string $library): string
Expand Down

0 comments on commit 76be3ca

Please sign in to comment.