-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop using Firebase Tokens in Build step (#683)
* chore: remove reference firebase * chore: format yml files
- Loading branch information
Showing
5 changed files
with
53 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,27 +18,25 @@ jobs: | |
matrix: | ||
node-version: [18.x] | ||
mongodb-version: [4.0, 4.2] | ||
|
||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v2 | ||
- name: Use Node.js @${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Start MongoDB | ||
uses: supercharge/[email protected] | ||
with: | ||
mongodb-version: ${{ matrix.mongodb-version }} | ||
- name: Build Server | ||
run: | | ||
yarn install | ||
npm install -g firebase-tools | ||
firebase use staging --token $FIREBASE_TOKEN | ||
yarn build | ||
- name: Test Server Build Process | ||
run: yarn test:build | ||
- name: Test API | ||
run: yarn jest | ||
- name: Test API Homepage | ||
run: yarn cypress:ci | ||
- name: Git checkout | ||
uses: actions/checkout@v2 | ||
- name: Use Node.js @${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Start MongoDB | ||
uses: supercharge/[email protected] | ||
with: | ||
mongodb-version: ${{ matrix.mongodb-version }} | ||
- name: Build Server | ||
run: | | ||
yarn install | ||
yarn build | ||
- name: Test Server Build Process | ||
run: yarn test:build | ||
- name: Test API | ||
run: yarn jest | ||
- name: Test API Homepage | ||
run: yarn cypress:ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters