File tree Expand file tree Collapse file tree 2 files changed +3
-40
lines changed Expand file tree Collapse file tree 2 files changed +3
-40
lines changed Original file line number Diff line number Diff line change @@ -41,47 +41,10 @@ jobs:
41
41
name : lib
42
42
path : ${{ github.workspace }}/lib
43
43
retention-days : 1
44
- node16 :
45
- runs-on : ubuntu-latest
46
- timeout-minutes : 15
47
- needs : [build]
48
- env :
49
- NODE_VERSION : 16
50
- steps :
51
- - name : Сheckout repo
52
- uses : actions/checkout@v3
53
- - name : Unarchiving lib directory
54
- uses : actions/download-artifact@v3
55
- with :
56
- name : lib
57
- path : ${{ github.workspace }}/lib
58
- - name : Use Node.js ${{ env.NODE_VERSION }}
59
- uses : actions/setup-node@v3
60
- with :
61
- node-version : ${{ env.NODE_VERSION }}
62
- - name : Cache node modules
63
- uses : actions/cache@v3
64
- env :
65
- cache-name : cache-node-modules
66
- with :
67
- path : ~/.npm
68
- key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
69
- restore-keys : |
70
- ${{ runner.os }}-build-${{ env.cache-name }}-
71
- ${{ runner.os }}-build-
72
- ${{ runner.os }}-
73
- - name : Install dependencies
74
- run : npm ci
75
- - name : Install emulator and test library
76
- run : sudo npm install firebase-tools -g
77
- - name : Set service account
78
- run : echo $SERVICE_ACCOUNT>serviceAccount.json
79
- - name : Run emulator
80
- run : npm run cov
81
44
node18 :
82
45
runs-on : ubuntu-latest
83
46
timeout-minutes : 15
84
- needs : [build, node16 ]
47
+ needs : [build]
85
48
env :
86
49
NODE_VERSION : 18
87
50
steps :
118
81
node20 :
119
82
runs-on : ubuntu-latest
120
83
timeout-minutes : 15
121
- needs : [build, node16, node18]
84
+ needs : [build, node18]
122
85
env :
123
86
NODE_VERSION : 20
124
87
steps :
Original file line number Diff line number Diff line change 1
1
{
2
2
"editor.defaultFormatter" : " esbenp.prettier-vscode" ,
3
3
"editor.codeActionsOnSave" : {
4
- "source.fixAll.eslint" : true
4
+ "source.fixAll.eslint" : " explicit "
5
5
},
6
6
"editor.formatOnSave" : true ,
7
7
"[json]" : {
You can’t perform that action at this time.
0 commit comments