Merge pull request #1350 from hovancik/feature/tray-clicks #1076
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: Node.js CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
fail-fast: false | |
steps: | |
- name: Set Timezone | |
uses: szenius/[email protected] | |
with: | |
timezoneLinux: Europe/Amsterdam | |
timezoneMacos: Europe/Amsterdam | |
timezoneWindows: W. Europe Standard Time | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.15.0' | |
- run: npm install npm -g | |
- run: npm install | |
- run: npx nyc --reporter=lcov npm test | |
env: | |
CI: true | |
- name: Codecov | |
uses: codecov/codecov-action@v3 |