File tree Expand file tree Collapse file tree 2 files changed +8
-15
lines changed
Expand file tree Collapse file tree 2 files changed +8
-15
lines changed Original file line number Diff line number Diff line change @@ -10,16 +10,14 @@ jobs:
1010 executor : node12
1111 steps :
1212 - checkout
13- - run : yarn --ignore-engines --cwd functions install
14- - run : yarn --ignore-engines --cwd functions run lint
15- - run : yarn --ignore-engines --cwd functions run build
13+ - run : cd functions && npm ci
1614
17- test :
18- executor : node12
19- steps :
20- - checkout
21- - run : yarn --ignore-engines --cwd functions
22- # TODO: write some tests and run them here
15+ # test:
16+ # executor: node12
17+ # steps:
18+ # - checkout
19+ # - run: yarn --ignore-engines --cwd functions
20+ # # TODO: write some tests and run them here
2321
2422 deploy :
2523 executor : node12
@@ -34,12 +32,7 @@ workflows:
3432 commit :
3533 jobs :
3634 - build
37- - test :
38- requires :
39- - build
4035 - deploy :
41- requires :
42- - test
4336 filters :
4437 branches :
4538 only :
Original file line number Diff line number Diff line change 3434tar xzf static_website.tar.gz -C public
3535
3636# Deploy to Firebase
37- yarn --ignore-engines --cwd functions install
37+ cd functions && npm ci
3838functions/node_modules/.bin/firebase deploy --token=" ${TOKEN} " --project=" ${PROJECT} "
You can’t perform that action at this time.
0 commit comments