Merge pull request #1 from ystv/mia/docker-entrypoint-fix #20
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: Check Yarn Constraints | |
| on: | |
| pull_request: | |
| branches: [master, main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| check-yarn-constraints: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js 18.x | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18.x | |
| cache: "yarn" | |
| cache-dependency-path: "yarn.lock" | |
| - run: yarn install --frozen-lockfile --immutable --inline-builds | |
| - run: yarn constraints |