Skip to content

chore(extension): add marketplace icon and README #2

chore(extension): add marketplace icon and README

chore(extension): add marketplace icon and README #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: extension/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: extension
- name: Build
run: npm run build
working-directory: extension
- name: Test
run: npm test
working-directory: extension