Skip to content

docs: fill project information from template (#2) #4

docs: fill project information from template (#2)

docs: fill project information from template (#2) #4

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
build-library:
name: Build Library
runs-on: ubuntu-22.04
steps:
- name: Checkout Project
uses: actions/[email protected]
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version-file: .nvmrc
- name: Setup Yarn
uses: threeal/[email protected]
- name: Check Formatting
run: |
yarn format
git diff --exit-code HEAD
- name: Check Lint
run: yarn lint
- name: Test Library
run: yarn test
- name: Package Library
run: yarn pack
- name: Upload Package
uses: actions/[email protected]
with:
path: package.tgz
if-no-files-found: error
overwrite: true