Skip to content

Extracted components #116

Extracted components

Extracted components #116

Workflow file for this run

name: CI
on: [push]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Lint and format check
run: npm run lint & npm run format:check
- name: Create .env with Plasmo public keys
uses: PlasmoHQ/soft-secret@v1
with:
secret: ${{ secrets.PLASMO_PUBLIC_KEYS }}
target: .env
- name: Create production builds
run: npm run build
- name: Upload build artifacts
uses: actions/upload-artifact@master
with:
name: fonts-jar
path: ./build/*-prod.zip