Bump braces from 3.0.2 to 3.0.3 #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare Environment | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 17 | |
cache: 'npm' | |
- name: Install Dependencies (Ubuntu Only) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt update | |
sudo apt install libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev | |
make install-dev | |
- name: Install Dependencies (macOS & Windows) | |
if: matrix.platform != 'ubuntu-latest' | |
run: make install-dev | |
- name: Build | |
run: make build-ci | |
- name: Test | |
run: make test |