Skip to content

Commit

Permalink
fix: bad node version
Browse files Browse the repository at this point in the history
  • Loading branch information
cyclimse committed Sep 5, 2023
1 parent e8dd966 commit 8ccb11b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/triggers-functions-offline-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@ jobs:
uses: actions/checkout@v3

- name: Install node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: "20.x"
node-version: 20

- name: Install node dev requirements
run: npm install --prefix ${{ env.TRIGGERS_GETTING_STARTED_FOLDER }}/node
run: |
cd ${{ env.TRIGGERS_GETTING_STARTED_FOLDER }}/node
npm install
- name: Install osht
run: |
curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh > osht.sh
run: curl -q -s https://raw.githubusercontent.com/coryb/osht/master/osht.sh > osht.sh

- name: Run node offline testing
uses: BerniWittmann/background-server-action@v1
Expand Down

0 comments on commit 8ccb11b

Please sign in to comment.