build(deps): bump node from 64b7183
to 8d9887b
#411
Workflow file for this run
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
name: Test | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 | |
with: | |
go-version: 1.20.x | |
cache: true | |
- name: setup node | |
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 | |
- name: install firestore emulator | |
run: | | |
npm i -g firebase firebase-tools | |
firebase setup:emulators:firestore | |
- name: test | |
run: | | |
firebase emulators:exec --only firestore --project test 'make test' |