Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Documentation check

on: [push]
on: [pull_request]

jobs:
style_check:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Javascript ESLint check

on: [push]
on: [pull_request]


jobs:
Expand Down
44 changes: 44 additions & 0 deletions .github/workflows/pnpm-autoupdate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: PNPM auto update packages

on:
pull_request:
branches: [devel]

permissions:
contents: write
pull-requests: write

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18']
name: pnpm packages update
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
cache-dependency-path: swift_browser_ui_frontend/pnpm-lock.yaml
- name: Install dependencies
run: |
pushd swift_browser_ui_frontend
pnpm update
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update pnpm packages
title: pnpm package updates
body: |
Automated PR with PNPM updates

Close and re-open this PR for the checks to run.
branch: update/pnpm-updates
base: devel
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Spelling Errors Check

on: [push]
on: [pull_request]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Python style check

on: [push]
on: [pull_request]

jobs:
style_check:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Python Unit Tests

on: [push]
on: [pull_request]

jobs:
unit_test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vueunit.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Vue.js Unit Tests

on: [push]
on: [pull_request]

jobs:
test:
Expand Down