Skip to content

refactor: improve codebase, brush feature #10

refactor: improve codebase, brush feature

refactor: improve codebase, brush feature #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
setup:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Set env vars, install packages and build
run: |
cp .env.example .env
npm ci
npm run build
npm test