chore(deps): update dependency typescript to v5.7.2 #214
This file contains 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 and Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
cache: npm | |
- if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }} | |
run: npm audit | |
- run: npm ci | |
- run: npm run format:check | |
- run: npm run build | |
- name: Upload built outputs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: ./dist | |
if-no-files-found: error | |