File tree 5 files changed +90
-51
lines changed
5 files changed +90
-51
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ jobs :
9
+ test :
10
+ uses : ./.github/workflows/test.yml
11
+
12
+ release :
13
+ name : Release
14
+ runs-on : ubuntu-latest
15
+ needs : test
16
+ environment : npm
17
+ permissions :
18
+ id-token : write # for CFA and npm provenance
19
+ steps :
20
+ - name : Checkout
21
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22
+ with :
23
+ persist-credentials : false
24
+ - name : Setup Node.js
25
+ uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
26
+ with :
27
+ node-version : 20.x
28
+ cache : ' yarn'
29
+ - name : Install
30
+ run : yarn install --frozen-lockfile
31
+ - uses : continuousauth/action@732eeb237ac0a0b330a7247f744ddc57898ff9c4 # v1.0.4
32
+ with :
33
+ project-id : ${{ secrets.CFA_PROJECT_ID }}
34
+ secret : ${{ secrets.CFA_SECRET }}
35
+ npm-token : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - main
7
+ schedule :
8
+ - cron : ' 0 22 * * 3'
9
+ workflow_call :
10
+
11
+ permissions :
12
+ contents : read
13
+
14
+ jobs :
15
+ test :
16
+ name : Test
17
+ strategy :
18
+ matrix :
19
+ node-version :
20
+ - ' 20.10'
21
+ - ' 18.18'
22
+ - ' 16.20'
23
+ - ' 14.16'
24
+ os :
25
+ - macos-latest
26
+ - ubuntu-latest
27
+ - windows-latest
28
+ runs-on : " ${{ matrix.os }}"
29
+ steps :
30
+ - name : Install Rosetta
31
+ if : ${{ matrix.os == 'macos-latest' && matrix.node-version == '14.16' }}
32
+ run : /usr/sbin/softwareupdate --install-rosetta --agree-to-license
33
+ - name : Install Linux Dependencies
34
+ if : ${{ matrix.os == 'ubuntu-latest' }}
35
+ run : sudo apt-get update && sudo apt-get install --no-install-recommends -y libasound2 libgtk-3-0 libnss3 libxss1 libxtst6 xvfb libgbm-dev
36
+ - name : Checkout
37
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
38
+ - name : Setup Node.js
39
+ uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
40
+ with :
41
+ node-version : " ${{ matrix.node-version }}"
42
+ cache : ' yarn'
43
+ architecture : ${{ matrix.os == 'macos-latest' && matrix.node-version == '14.16' && 'x64' || env.RUNNER_ARCH }}
44
+ - name : Install (Node.js v16+)
45
+ if : ${{ matrix.node-version != '14.16' }}
46
+ run : yarn install --frozen-lockfile
47
+ - name : Install (Node.js < v16)
48
+ if : ${{ matrix.node-version == '14.16' }}
49
+ run : yarn install --frozen-lockfile --ignore-engines
50
+ - name : Test
51
+ run : yarn test
Original file line number Diff line number Diff line change 1
1
# @electron/asar - Electron Archive
2
2
3
- [ ![ CircleCI build status ] ( https://circleci .com/gh/ electron/asar/tree/main. svg?style=shield )] ( https://circleci .com/gh/ electron/asar/tree/main )
3
+ [ ![ Test ] ( https://github .com/electron/asar/actions/workflows/test.yml/badge. svg )] ( https://github .com/electron/asar/actions/workflows/test.yml )
4
4
[ ![ npm version] ( http://img.shields.io/npm/v/@electron/asar.svg )] ( https://npmjs.org/package/@electron/asar )
5
5
6
6
Asar is a simple extensive archive format, it works like ` tar ` that concatenates
Original file line number Diff line number Diff line change 23
23
"bugs" : {
24
24
"url" : " https://github.com/electron/asar/issues"
25
25
},
26
+ "publishConfig" : {
27
+ "provenance" : true
28
+ },
26
29
"scripts" : {
27
30
"build" : " tsc" ,
28
31
"mocha" : " xvfb-maybe electron-mocha --reporter spec && mocha --reporter spec" ,
You can’t perform that action at this time.
0 commit comments