Skip to content

Commit 2d624bc

Browse files
authored
Merge pull request #1222 from joshunrau/ci
allow running ci on workflow dispatch
2 parents 86621f4 + c8ba0a4 commit 2d624bc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ name: CI
22
on:
33
pull_request:
44
branches: ['main']
5+
workflow_dispatch:
56
jobs:
67
lint-and-test:
78
runs-on: ubuntu-latest
89
steps:
910
- name: Checkout Code
10-
uses: actions/checkout@v4
11+
uses: actions/checkout@v6
1112
- name: Setup PNPM
1213
uses: pnpm/action-setup@v4
1314
- name: Setup Node.js
14-
uses: actions/setup-node@v4
15+
uses: actions/setup-node@v6
1516
with:
1617
cache: 'pnpm'
1718
node-version-file: '.nvmrc'

0 commit comments

Comments
 (0)