Skip to content

chore(deps-dev): bump @electron-forge/maker-rpm from 6.0.0-beta.58 to 6.4.2 #913

chore(deps-dev): bump @electron-forge/maker-rpm from 6.0.0-beta.58 to 6.4.2

chore(deps-dev): bump @electron-forge/maker-rpm from 6.0.0-beta.58 to 6.4.2 #913

Workflow file for this run

name: Node CI
on:
push:
branches:
- master
- develop
pull_request:
defaults:
run:
shell: bash
jobs:
build:
runs-on: ${{matrix.os}}
env:
BAIDU_APPID: ${{ secrets.BAIDU_APPID }}
BAIDU_APP_KEY: ${{ secrets.BAIDU_APP_KEY }}
strategy:
matrix:
node-version: [12.x]
os: [macos-10.15, ubuntu-latest]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Create env file
run: |
touch .env
echo BAIDU_APPID=${{ secrets.BAIDU_APPID }} >> .env
echo BAIDU_APP_KEY=${{ secrets.BAIDU_APP_KEY }} >> .env
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Test
run: yarn run test