chore(deps): update dependency ubi:jacktabscode/asphalt to v1 #656
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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| packages: write | |
| env: | |
| CI: true | |
| HUSKY: 0 | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| - uses: jdx/mise-action@5ac50f778e26fac95da98d50503682459e86d566 # v3.2 | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Cache ESLint | |
| uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| key: eslint-cache-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml', 'eslint.config.*') }}-${{ github.run_id }} | |
| path: .eslintcache | |
| restore-keys: | | |
| eslint-cache-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml', 'eslint.config.*') }}- | |
| eslint-cache-${{ runner.os }}- | |
| - name: Lint | |
| run: pnpm lint:ci | |
| - name: Compile | |
| run: pnpm prod:build | |
| - name: Build project | |
| run: rojo build ./build.project.json --output place.rbxlx |