We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a16a55 + f14f55c commit 877b37dCopy full SHA for 877b37d
.github/copilot-setup-steps.yml
@@ -0,0 +1,36 @@
1
+name: "Copilot Setup Steps"
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ paths:
7
+ - .github/workflows/copilot-setup-steps.yml
8
+ pull_request:
9
10
11
12
+jobs:
13
+ copilot-setup-steps:
14
+ runs-on: ubuntu-latest
15
16
+ permissions:
17
+ contents: read
18
19
+ steps:
20
+ - name: Checkout code
21
+ uses: actions/checkout@v4
22
23
+ - name: Use Node.js 20.x
24
+ uses: actions/setup-node@v3
25
+ with:
26
+ node-version: 20.x
27
+ cache: 'yarn'
28
29
+ - name: Install dependencies
30
+ run: yarn --frozen-lockfile
31
32
+ - name: Setup and run tsc
33
+ run: yarn setup
34
35
+ - name: Esbuild
36
+ run: yarn esbuild
0 commit comments