fix packages #3042
This file contains hidden or 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: BUILD AND TEST | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '16.x' | |
| - run: npm ci | |
| - run: cp config.private.ts.example config.private.ts | |
| - run: npm run lint | |
| - run: npm run tsc | |
| - run: npm run test |