Skip to content

Commit

Permalink
Lock firebase-tools to v13 and bump actions to use Node 20.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanedey committed Dec 19, 2023
1 parent 3773b64 commit af87070
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
python: ['3.7', '3.8', '3.9', '3.10', 'pypy3.8']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
Expand All @@ -22,19 +22,19 @@ jobs:
pip install -r requirements.txt
- name: Test with pytest
run: pytest
- name: Set up Node.js 16
uses: actions/setup-node@v1
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20
- name: Run integration tests against emulator
run: |
npm install -g firebase-tools
npm install -g firebase-tools@13.x
firebase emulators:exec --only database --project fake-project-id 'pytest integration/test_db.py'
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit af87070

Please sign in to comment.