fix(mise): orchestrate elm builds serially to eliminate Windows race #3098
Workflow file for this run
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
| # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
| name: Node.js CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [opened, synchronize] | |
| env: | |
| SonatypeUrl: "https://finos.sonatype.app/platform/" | |
| SonatypeAppId: "morphir-elm" | |
| SonatypeScanTarget: "." | |
| ExcludeDirectory: "**/docs/ **/.*'" | |
| jobs: | |
| # building project | |
| build: | |
| name: Build | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [24.x] | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - name: Install mise | |
| uses: jdx/mise-action@v2 | |
| with: | |
| experimental: true | |
| - name: Cache Elm | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.elm | |
| key: ${{ runner.os }}-elm-${{ hashFiles('**/elm.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-elm- | |
| - name: Build | |
| run: npm run build --if-present | |
| - name: Running Test | |
| run: npm test | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: package-lock | |
| path: package-lock.json | |
| # Semgrep static code analysis | |
| semgrep: | |
| name: Semgrep | |
| runs-on: ubuntu-latest | |
| # needs: [cvescan] | |
| needs: [build] | |
| container: | |
| # A Docker image with Semgrep installed. Don't change this. | |
| image: returntocorp/semgrep | |
| # Skip any PR created by dependabot to avoid permission issues | |
| if: (github.actor != 'dependabot[bot]') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: semgrep scan --config auto --severity ERROR | |
| env: | |
| SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} |