Skip to content

Update dependency regenerator-runtime to ^0.14.0 #536

Update dependency regenerator-runtime to ^0.14.0

Update dependency regenerator-runtime to ^0.14.0 #536

Workflow file for this run

name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- name: Install
run: npm ci
- name: Test
run: npm test
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Firebase Deploy
run: npm run deploy
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}