docs: update modules docs #142
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: 🖥️ Workflow Dev | |
on: | |
push: | |
branches: [chaca-dev] | |
pull_request: | |
branches: [chaca-dev, main] | |
jobs: | |
release: | |
name: 🖥️ Dev | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: "https://registry.npmjs.org" | |
- name: 🕹️ Ci | |
run: npm ci | |
- name: 📦 Install packages | |
run: npm install | |
- name: 🪛 Build Chaca | |
run: npm run build | |
- name: 🧪 Test | |
run: npm run test |