mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 19:25:23 +00:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
pull_request:
|
|
types: [opened, edited]
|
|
branches:
|
|
- master
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-on-ubuntu:
|
|
name: Testing Workflow Linux
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
SIGNER_CERT: ${{ secrets.SIGNER_CERT }}
|
|
SIGNER_KEY: ${{ secrets.SIGNER_KEY }}
|
|
WWDR: ${{ secrets.WWDR }}
|
|
SIGNER_KEY_PASSPHRASE: ${{ secrets.SIGNER_KEY_PASSPHRASE }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "14.x"
|
|
check-latest: true
|
|
- run: |
|
|
npm install
|
|
npm run build
|
|
npm run test
|
|
|
|
test-on-windows:
|
|
name: Testing Workflow Windows
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "14.x"
|
|
check-latest: true
|
|
- run: |
|
|
npm install
|
|
npm run build
|
|
npm run test
|