Skip to content

Commit

Permalink
ci: add mac and win runner images
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmanchhabra committed Nov 1, 2023
1 parent 95af8b1 commit 090925f
Showing 1 changed file with 5 additions and 18 deletions.
23 changes: 5 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ concurrency:

jobs:
e2e:
runs-on: ubuntu-22.04
strategy:
matrix:
os: [macos-13, ubuntu-22.04, windows-2022]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/[email protected]
Expand All @@ -27,20 +31,3 @@ jobs:
run: npm ci
- name: Run test
run: npm test
npm:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Test publish sdk tag to npm
uses: JS-DevTools/[email protected]
with:
token: ${{ secrets.NPM_TOKEN }}
tag: sdk
dry-run: true
- name: Test publish latest tag to npm
uses: JS-DevTools/[email protected]
with:
token: ${{ secrets.NPM_TOKEN }}
tag: latest
dry-run: true

0 comments on commit 090925f

Please sign in to comment.