diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 32b6d8b..1320b40 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -49,3 +49,23 @@ jobs: - name: Run Prettier run: node_modules/.bin/prettier -c . + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - uses: pnpm/action-setup@v2 + with: + version: latest + + - uses: actions/setup-node@v3 + with: + node-version-file: ".nvmrc" + cache: "pnpm" + + - name: Install dependencies + run: pnpm install --frozen-lockfile + + - name: Build package + run: pnpm build