Check LazCompatibility attribute for OPM packages #207
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
| name: build | |
| on: | |
| pull_request: | |
| push: | |
| paths-ignore: | |
| - "README.md" | |
| branches: | |
| - master | |
| - releases/* | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.operating-system }} | |
| strategy: | |
| matrix: | |
| operating-system: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v4 | |
| - name: Setup node 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - run: npm ci | |
| - run: npm run build |