Fix node version and package install in action

This commit is contained in:
Fergal Moran
2023-03-06 07:46:19 +00:00
parent 66ebf66b58
commit 5e0bc14806

View File

@@ -11,7 +11,11 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: yarn && yarn build - uses: actions/setup-node@v1
with:
node-version: 16
- run: yarn install --frozen-lockfile
- run: yarn build
- uses: FirebaseExtended/action-hosting-deploy@v0 - uses: FirebaseExtended/action-hosting-deploy@v0
with: with:
repoToken: '${{ secrets.GITHUB_TOKEN }}' repoToken: '${{ secrets.GITHUB_TOKEN }}'