updating to newer versions of electron and node #56
Workflow file for this run
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: CI | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
node: [20, 18] | |
electron: [30, 28, 23] | |
include: | |
- os: ubuntu-latest | |
node: 16 | |
electron: 20 | |
- os: ubuntu-latest | |
node: 16 | |
electron: 18 | |
- os: ubuntu-latest | |
node: 16 | |
electron: 16 | |
- os: windows-latest | |
node: 14 | |
electron: 14 | |
- os: ubuntu-latest | |
node: 14 | |
electron: 12 | |
- os: windows-latest | |
node: 12 | |
electron: 10 | |
- os: ubuntu-latest | |
node: 10 | |
electron: 8 | |
runs-on: ${{ matrix.os }} | |
name: test (${{matrix.os}}, node@${{matrix.node}}, electron@${{matrix.electron}}) | |
steps: | |
- uses: actions/checkout@v3 | |
- if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: sudo apt-get install xvfb | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm install | |
- run: npm install electron@${{ matrix.electron }} | |
- run: node --version | |
- run: npx electron --version || echo well that went poorly | |
- name: npm test | |
run: npm run citest | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: npm install | |
- run: node --version | |
- run: npm run lint | |
publish: | |
runs-on: ubuntu-latest | |
needs: [test, lint] | |
if: startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
registry-url: https://registry.npmjs.org/ | |
- run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.npm_token}} |