Skip to content

Add symbol method icon #66

Add symbol method icon

Add symbol method icon #66

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Node.js ⚙️
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- name: Install node_modules 📦
run: npm ci
- name: Validate linting rules 🔍
run: npm run lint
- name: Build 🚀
run: npm run build