revert(docs): re-added build directory in .gitignore #187
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 the core package | |
on: | |
push: | |
branches: | |
- "**" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node 22.12.0 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22.12.0" | |
- name: Test the 'core' package | |
working-directory: ./packages/core | |
run: | | |
npm install | |
npm test |