Build(deps-dev): Bump vue-i18n from 11.1.1 to 11.1.2 in the npm_and_yarn group #5061
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: Linux Build | |
on: | |
push: | |
branches: | |
- "*" | |
tags: | |
- "*" | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ["22"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Lint | |
run: pnpm run lint | |
- name: Build | |
if: github.ref == 'refs/heads/main' | |
run: pnpm run build | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Build | |
if: github.ref != 'refs/heads/main' | |
run: pnpm run build --publish=never | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
- uses: actions/upload-artifact@v4 | |
name: Upload AppImage | |
with: | |
name: WeakAuras-Companion-CI-AppImage | |
path: release/**/*.AppImage | |
- uses: actions/upload-artifact@v4 | |
name: Upload Snap | |
with: | |
name: WeakAuras-Companion-CI-Snap | |
path: release/**/*.snap | |
- uses: actions/upload-artifact@v4 | |
name: Upload deb | |
with: | |
name: WeakAuras-Companion-CI-deb | |
path: release/**/*.deb | |
- uses: actions/upload-artifact@v4 | |
name: Upload rpm | |
with: | |
name: WeakAuras-Companion-CI-rpm | |
path: release/**/*.rpm |