File tree 3 files changed +1
-9
lines changed
3 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 56
56
- uses : actions/checkout@v4
57
57
with :
58
58
ref : ' dev'
59
- token : ${{ secrets.IDEE_GH_TOKEN }} # So we can access internal repo to pull shared ui components
60
59
# We need to set up Node and install our Node dependencies.
61
60
- uses : actions/setup-node@v4
62
61
with :
Original file line number Diff line number Diff line change 9
9
steps :
10
10
- name : ' Check out the code'
11
11
uses : actions/checkout@v4
12
- with :
13
- token : ${{ secrets.IDEE_GH_TOKEN }} # So we can access internal repo to pull shared ui components
14
12
- name : ' Set up NodeJS'
15
13
uses : actions/setup-node@v4
16
14
with :
17
15
node-version : ' lts/*' # Node LTS should always be fine.
18
- - name : Configure Git for private repo access
19
- run : git config --global --add url."https://${{ secrets.IDEE_GH_TOKEN }}@github.com/".insteadOf "https://github.com/"
20
16
- name : ' Install node dependencies'
21
17
run : yarn install --frozen-lockfile
22
18
- name : ' Create VSIX'
Original file line number Diff line number Diff line change 35
35
uses : actions/checkout@v4
36
36
with :
37
37
ref : ${{ inputs.target-branch }}
38
- token : ${{ secrets.IDEE_GH_TOKEN }} # So we can access internal repo to pull shared ui components
39
- - name : ' Set up NodeJS'
38
+ - name : ' Set up NodeJS'
40
39
uses : actions/setup-node@v4
41
40
with :
42
41
node-version : ' lts/*' # Node LTS should always be fine.
48
47
- uses : actions/setup-python@v5
49
48
with :
50
49
python-version : 3.12
51
- - name : Configure Git for private repo access
52
- run : git config --global --add url."https://${{ secrets.IDEE_GH_TOKEN }}@github.com/".insteadOf "https://github.com/"
53
50
- name : ' Install node module dependencies'
54
51
run : yarn install --frozen-lockfile
55
52
# We'll need to install the CLI tool, since some of the tests
You can’t perform that action at this time.
0 commit comments