Skip to content

Commit

Permalink
⚙️ config(ci): Add workflow to smoke test deps upgrade script.
Browse files Browse the repository at this point in the history
Fixes #809.
  • Loading branch information
make-github-pseudonymous-again committed May 19, 2024
1 parent 7a06997 commit 0cf127a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci:deps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: ci:deps

on:
push:
branches:
- main
pull_request:
merge_group:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:

upgrade:
name: Continuous integration (upgrade deps)
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Install 💾
uses: ./.github/actions/install

- name: Upgrade dependencies (regression test) 📦
run: meteor npm run upgrade-deps

0 comments on commit 0cf127a

Please sign in to comment.