Bump vite from 4.4.8 to 4.5.2 #16
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: Package | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
package: | |
timeout-minutes: 25 | |
environment: staging | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Install Node.js and NPM | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: npm install | |
run: | | |
npm install | |
# This dependency wasn't needed until suddenly on Dec. 2, 2022 | |
- name: install dmg-license | |
run: | | |
if [ "$RUNNER_OS" == "macOS" ]; then | |
npm i dmg-license | |
else | |
exit 0 | |
fi | |
shell: bash | |
- name: npm package | |
env: | |
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} | |
MP_PROJECT_TOKEN: ${{ secrets.MP_PROJECT_TOKEN }} | |
MP_PROJECT_ENV: ${{ vars.MP_PROJECT_ENV }} | |
NICENODE_ENV: ${{ vars.NICENODE_ENV }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
npm run package -- --linux deb AppImage | |
else | |
npm run package | |
fi | |
shell: bash |