RSTUDIO-539: Better visualization for mixed and dictionaries #344
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: Lint, build & package | |
on: | |
pull_request: | |
branches: | |
- channel/* | |
jobs: | |
build: | |
name: Build, lint & test | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Setup Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11.x' | |
- name: Install dependencies | |
run: npm ci | |
- name: Check package-lock.json | |
run: npm run check:package-lock | |
- name: Lint TypeScript | |
run: npm run lint:es | |
- name: Lint SASS | |
run: npm run lint:sass | |
- name: Build the bundle | |
run: npm run build | |
- name: Run pre-package tests | |
env: | |
MOCHA_FILE: pre-test-results.xml | |
run: npm test -- --reporter mocha-github-actions-reporter | |
- name: Build the package | |
run: npx electron-builder -m --publish never | |
- name: Archive the .dmg for macOS | |
uses: actions/upload-artifact@v2 | |
with: | |
name: mac-dmg | |
path: dist/*.dmg | |
- name: Archive the .zip for macOS | |
uses: actions/upload-artifact@v2 | |
with: | |
name: mac-zip | |
path: dist/*-mac.zip |