Skip to content

chore: Remove deployment step from the CI #27

chore: Remove deployment step from the CI

chore: Remove deployment step from the CI #27

Workflow file for this run

name: Push workflow
on:
push:
branches: [main]
jobs:
build:
name: Build and run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16.x"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Generate table for addon
run: npm run addon:generate-table
- name: Configure addon
run: npm run addon:configure
- name: Build addon
run: npm run addon:build
- name: Build application
run: npm run build
- name: Run tests
run: npm test