Skip to content

version bump

version bump #31

Workflow file for this run

name: main
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node 18
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Use cached node_modules
uses: actions/cache@v3
with:
path: node_modules
key: nodeModules-18-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm install
env:
CI: true
- name: Test
run: npm test
env:
CI: true
- name: Build
run: npm run build
env:
CI: true