Skip to content

Merge pull request #12 from idkncc/dependabot/npm_and_yarn/packages-f… #71

Merge pull request #12 from idkncc/dependabot/npm_and_yarn/packages-f…

Merge pull request #12 from idkncc/dependabot/npm_and_yarn/packages-f… #71

Workflow file for this run

name: Build package
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build package
run: pnpm build
# removed, due eslint v9
#
# - name: Lint package
# run: pnpm lint