Skip to content

Implemented Tailwind / Added Forms #38

Implemented Tailwind / Added Forms

Implemented Tailwind / Added Forms #38

Workflow file for this run

name: Node.js CI
on:
push:
branches: main
pull_request:
branches: main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.15.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Run CI command
run: npm ci
- name: Run the tests
run: npm run test
- name: Build
run: npm run build