π Fix npm_ensure_updated function to use 'npm update -g' instead of 'β¦ #555
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: CI Workflow | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: macOS-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v3 | |
| - name: Setup | |
| run: make setup | |
| - name: Run lint | |
| run: | | |
| make lint | |
| - name: Run tests | |
| run: | | |
| TEST_TMP_DIR="${{ runner.temp }}" make test |