This repository has been archived by the owner on Dec 16, 2023. It is now read-only.
Bump got from 13.0.0 to 14.0.0 #173
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test packages | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Package build | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout | |
- uses: actions/setup-node@v4 | |
name: Setup Node.js | |
with: | |
node-version: latest | |
- name: Install dependencies | |
run: npm install --no-save | |
- name: Build packages | |
run: npm run build |