Skip to content

Commit

Permalink
ci(HelloWorld): Bump actions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Jan 9, 2023
1 parent 3e646d8 commit 4afb68f
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/examples.yml
Expand Up @@ -27,18 +27,18 @@ jobs:
build-hello-world-example:
name: hello-world build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
working-directory: ./examples/hello-world

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'

- name: Install
run: |
Expand All @@ -49,7 +49,7 @@ jobs:
npm run build
- name: Save wasm builds
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: hello-world-build
if-no-files-found: error
Expand All @@ -59,26 +59,26 @@ jobs:
test-hello-world-example:
name: Hello World Test
name: hello-world test
needs: build-hello-world-example
runs-on: ubuntu-20.04
container: cypress/browsers:node16.13.2-chrome97-ff96
runs-on: ubuntu-22.04
container: cypress/browsers:node18.12.0-chrome107

defaults:
run:
working-directory: ./examples/hello-world

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Load wasm builds
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: hello-world-build
path: examples/hello-world

- name: Test
uses: cypress-io/github-action@v2
uses: cypress-io/github-action@v5
with:
working-directory: ./examples/hello-world
browser: chrome
Expand Down

0 comments on commit 4afb68f

Please sign in to comment.