Skip to content

Commit

Permalink
chore: Bump github actions CI to use Node 20 (#748)
Browse files Browse the repository at this point in the history
* Lock firebase-tools to v13 and bump actions to use Node 20.

* set firebase-tools to latest
  • Loading branch information
jonathanedey authored Dec 19, 2023
1 parent 3773b64 commit e073f8c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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,10 +22,10 @@ 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
Expand All @@ -34,7 +34,7 @@ jobs:
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 e073f8c

Please sign in to comment.