File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
update-dependencies :
11
11
runs-on : ubuntu-latest
12
+ strategy :
13
+ matrix :
14
+ node-version : [18.x]
12
15
steps :
13
16
- uses : actions/checkout@v3
14
17
15
18
- uses : actions/cache@v3
16
19
with :
17
20
path : |
18
21
~/.deno
19
- ~/.cache/deno
22
+ ~/.cache/deno
20
23
key : ${{ runner.os }}-deno-${{ hashFiles('**/deps.ts') }}-${{ hashFiles('**/import_map.json') }}
21
24
- uses : denoland/setup-deno@v1
22
25
with :
63
66
- name : Update dependencies
64
67
65
68
run : deno run -A https://deno.land/x/udd/main.ts deps.ts *.ts '*/*.ts' '*.json'
69
+ - name : Use Node.js ${{ matrix.node-version }}
70
+ uses : actions/setup-node@v3
71
+ with :
72
+ node-version : ${{ matrix.node-version }}
73
+ - run : npx -y prettier --w */*/*.yml */*.yml
66
74
- name : Create Pull Request
67
75
uses : peter-evans/create-pull-request@v3
68
76
id : pr
You can’t perform that action at this time.
0 commit comments