Skip to content

Merge pull request #40 from ymaheshwari1/fix/i18n-error #34

Merge pull request #40 from ymaheshwari1/fix/i18n-error

Merge pull request #40 from ymaheshwari1/fix/i18n-error #34

Workflow file for this run

name: Verify build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 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: Install Dependencies
run: npm install
- name: Generate .env file
run: cp .env.example .env
- name: Build
run: npm run buildScript