Skip to content

chore(deps): update dependency @nuxtjs/tailwindcss to v6.8.0 #249

chore(deps): update dependency @nuxtjs/tailwindcss to v6.8.0

chore(deps): update dependency @nuxtjs/tailwindcss to v6.8.0 #249

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2022-2023 trobonox <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
name: "Test on pull requests"
on:
pull_request:
branches:
- main
paths:
- '.github/workflows/**'
- 'src/**'
- 'src-tauri/**'
- 'package.json'
- 'yarn.lock'
jobs:
test-tauri:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-20.04]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
- name: install Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: install app dependencies and build it
run: yarn && yarn generate
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}