chore(deps): lock file maintenance #457
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: | |
| push: | |
| branches: | |
| - main | |
| pull_request: {} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Build Project | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Node.js | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| registry-url: "https://registry.npmjs.org" | |
| - name: install dependencies | |
| run: npm ci | |
| - name: Build project | |
| run: npm run build | |
| - name: Run Gravity | |
| run: npm run gravityci "dist/**/*" | |
| env: | |
| GRAVITY_TOKEN: ${{ secrets.GRAVITY_TOKEN }} | |
| GRAVITY_HOST: ${{ vars.GRAVITY_HOST }} |