File tree Expand file tree Collapse file tree 3 files changed +21
-21
lines changed
Expand file tree Collapse file tree 3 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 44 SCRIPT_DIR : ./.github/scripts
55
66jobs :
7- test :
8- strategy :
9- matrix :
10- os : [macos-latest, ubuntu-latest, windows-latest]
11- runs-on : ${{ matrix.os }}
12- steps :
13- - uses : actions/checkout@v3
14- - uses : actions/setup-node@v3
15- with :
16- node-version : 18
17- - run : yarn install
18- - name : Run tests
19- 20- with :
21- run : npm run test
7+ # test:
8+ # strategy:
9+ # matrix:
10+ # os: [macos-latest, ubuntu-latest, windows-latest]
11+ # runs-on: ${{ matrix.os }}
12+ # steps:
13+ # - uses: actions/checkout@v3
14+ # - uses: actions/setup-node@v3
15+ # with:
16+ # node-version: 18
17+ # - run: yarn install
18+ # - name: Run tests
19+ # uses: GabrielBB/[email protected] 20+ # with:
21+ # run: npm run test
2222 build :
2323 runs-on : ubuntu-latest
2424 env :
@@ -27,10 +27,10 @@ jobs:
2727 - uses : actions/checkout@v3
2828 - run : node $SCRIPT_DIR/enableWebpack.js
2929 - run : yarn install
30- - uses : lannonbr/vsce-action@master
30+ - uses : lannonbr/vsce-action@4.0.0
3131 with :
3232 args : " package -o $VSIX_FILE"
33- - uses : actions/upload-artifact@v3
33+ - uses : actions/upload-artifact@v4
3434 with :
3535 name : ${{ env.VSIX_FILE }}
3636 path : ${{ env.VSIX_FILE }}
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ jobs:
1717 - uses : actions/checkout@v3
1818 - run : node $SCRIPT_DIR/enableWebpack.js
1919 - run : yarn install
20- - uses : lannonbr/vsce-action@master
20+ - uses : lannonbr/vsce-action@4.0.0
2121 with :
2222 args : " package -o $FILE_OUT"
23- - uses : actions/upload-artifact@v3
23+ - uses : actions/upload-artifact@v4
2424 with :
2525 name : " ${{ env.FILE_OUT }}"
2626 path : " ${{ env.FILE_OUT }}"
Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ jobs:
1717 - uses : actions/checkout@v3
1818 - run : node $SCRIPT_DIR/enableWebpack.js
1919 - run : yarn install
20- - uses : lannonbr/vsce-action@master
20+ - uses : lannonbr/vsce-action@4.0.0
2121 with :
2222 args : " package"
2323 - name : Identify output file # can be retrieved as steps.filenames.outputs.file_out
2424 id : filenames
2525 run : echo "::set-output name=file_out::$(ls | grep "^.*\.vsix$" | head -1)"
26- - uses : actions/upload-artifact@v3
26+ - uses : actions/upload-artifact@v4
2727 with :
2828 name : ${{ steps.filenames.outputs.file_out }}
2929 path : ${{ steps.filenames.outputs.file_out }}
You can’t perform that action at this time.
0 commit comments