Skip to content

chore: increase package version (#37) #145

chore: increase package version (#37)

chore: increase package version (#37) #145

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install
run: yarn install
- name: Check types
run: yarn check:types
- name: Test
run: yarn test
- name: Build
run: yarn build