You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Magister-Auto-Login/.github/workflows/compile.yml

24 lines
473 B

name: deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup checkout
uses: actions/checkout@v2
- name: Setup NodeJS v12
uses: actions/setup-node@v1
with:
node-version: 15
- name: Install Dependencies
run: yarn install
- name: Build for Chrome
run: yarn build -t chrome
- name: Build for Firefox
run: yarn build -t firefox