Switch GH Actions from NPM to Yarn

This commit is contained in:
Xevion
2022-05-13 03:57:14 -05:00
parent 7873399f9e
commit e98e6e4153
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
- run: npm ci && npm run build
- run: yarn run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'

View File

@@ -7,7 +7,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
- run: npm ci && npm run build
- run: yarn run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'