mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
58 lines
1.4 KiB
YAML
58 lines
1.4 KiB
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: CI
|
|
|
|
# Controls when the action will run. Triggers the workflow on push or pull request
|
|
# events but only for the master branch
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 16
|
|
- name: Install dependencies
|
|
run: npm install
|
|
- name: Run headless test
|
|
uses: GabrielBB/xvfb-action@v1.0
|
|
with:
|
|
run: npm test
|
|
|
|
publish:
|
|
name: Release and publish
|
|
if: github.event_name != 'pull_request'
|
|
needs: test
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 16
|
|
- name: Install dependencies
|
|
run: npm install
|
|
- name: Release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
|
|
run: npx semantic-release
|
|
- name: Publish
|
|
if: success()
|
|
run: npm run deploy
|
|
env:
|
|
VSCE_PAT: ${{ secrets.VSCE_PAT }}
|
|
- name: Publish to OpenVSX
|
|
if: success()
|
|
run: npx ovsx publish -p ${{ secrets.OVSX_PAT }}
|