Skip to content

Add jwt decode tool #555

Add jwt decode tool

Add jwt decode tool #555

Workflow file for this run

name: Build and deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
env:
FIREBASE_TOKEN: ${{secrets.FIREBASE_TOKEN}}
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- uses: actions/cache@v3
id: cache-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: |
npm ci
- name: Build and deploy
run: |
npm run deploy