Skip to content

Commit

Permalink
ci: use macos-latest (#1787)
Browse files Browse the repository at this point in the history
* ci: use macos-latest

* test: increase timeout for @sparticuz/chrome-aws-lambda http api tests

* test: remove sparticuz chrome api test

* ci: skip @sparticuz/chrome-aws-lambda http
  • Loading branch information
DorianMazur authored Aug 5, 2024
1 parent ab8565a commit f469155
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 42 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-12, ubuntu-latest, windows-latest]
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [18, 20, 22]

steps:
Expand All @@ -34,12 +34,12 @@ jobs:
with:
go-version: "1"

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "8"
java-version: "11"

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ describe("@sparticuz/chrome-aws-lambda http", function desc() {
})

afterEach(() => teardown())

it("@sparticuz/chrome-aws-lambda http tests", async function it() {
// Not working on macos-latest
it.skip("@sparticuz/chrome-aws-lambda http tests", async function it() {
if (platform() !== "darwin") {
this.skip()
}
Expand Down

0 comments on commit f469155

Please sign in to comment.