Skip to content

Release/0.0.2

Release/0.0.2 #71

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ['develop', 'main']
jobs:
continuous-integration:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Setup
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Linter
run: npm run lint
- name: Check Format
run: npm run check-format