We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dd94dc commit 45009f6Copy full SHA for 45009f6
.circleci/config.yml
@@ -1,20 +1,19 @@
1
version: 2.1
2
orbs:
3
- node: circleci/node@1.1.6
+ node: circleci/node@5.0.2
4
jobs:
5
build-deploy:
6
executor:
7
name: node/default
8
+ tag: '16'
9
steps:
10
- checkout
- - node/with-cache:
11
- steps:
12
- - run: yarn install
13
- - run: yarn build
+ - node/install-packages
+ - run: npm run build
14
- run: ./node_modules/.bin/firebase deploy --token "$FIREBASE_TOKEN"
15
16
workflows:
17
deploy:
18
19
- build-deploy:
20
- context: Firebase
+ context: Firebase
0 commit comments