Skip to content

fix double letterings #59

fix double letterings

fix double letterings #59

Workflow file for this run

name: Build and Test
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop, master ]
jobs:
build:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install and Build 🔧
run: |
npm ci
npm run build
- name: Test
run: npm test