We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb3287a commit e81e567Copy full SHA for e81e567
2 files changed
.github/dependabot.yml
@@ -4,3 +4,7 @@ updates:
4
directory: '/'
5
schedule:
6
interval: 'weekly'
7
+ - package-ecosystem: 'github-actions'
8
+ directory: '/'
9
+ schedule:
10
+ interval: 'weekly'
.github/workflows/pr.yaml
@@ -0,0 +1,27 @@
1
+on:
2
+ push:
3
+ branches:
+ - main
+ pull_request:
+concurrency:
+ group: 'pr-${{ github.event.pull_request.number }}'
+ cancel-in-progress: true
11
+jobs:
12
+ test-vscode:
13
+ env:
14
+ PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-node@v4
19
+ with:
20
+ node-version: '20'
21
+ - uses: pnpm/action-setup@v4
22
23
+ version: latest
24
+ - name: Install dependencies
25
+ run: pnpm install
26
+ - name: Run CI
27
+ run: pnpm run ci
0 commit comments