Skip to content

Creating new release 3.0.4 #206

Creating new release 3.0.4

Creating new release 3.0.4 #206

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
- name: Setup npm
run: |
npm install
- name: Build the project
run: npm run build
- name: Test the project
run: npm test