Skip to content

bump version in package.json to v0.1.2 (#68) #69

bump version in package.json to v0.1.2 (#68)

bump version in package.json to v0.1.2 (#68) #69

Workflow file for this run

name: Continuous Integration
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-lint-test:
name: Build, Lint, Test
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Node.js dependencies
run: npm ci
- name: Run linters
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test