Skip to content

feat(extension): create setup and first feature #11

feat(extension): create setup and first feature

feat(extension): create setup and first feature #11

Workflow file for this run

name: Deploy App
on:
push:
branches: [ main ]
jobs:
build_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: npm ci, build and test
run: |
npm ci
npm run build --if-present
npm test
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.2.2
with:
branch: gh-pages
folder: build