Switch to yarn

This commit is contained in:
2020-09-05 08:33:25 +09:00
parent fe284e1a6a
commit 5d4e5dfa08
5 changed files with 3862 additions and 4554 deletions

21
.github/workflow/firebase.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Deploy to Firebase Hosting
on: [push]
jobs:
FrontDeploy:
name: FrontDeploy
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: setup Node
uses: actions/setup-node@v1
with:
node-version: 10.x
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm install
- name: deploy to Firebase Hosting
run: |
npm run deploy --token=${{ secrets.FIREBASE_TOKEN }}