build(deps-dev): bump the typescript-eslint group with 2 updates (#343) #1287
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
# cache: npm | |
- name: Install dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: npm install --prefer-offline | |
- name: Lint commit message | |
run: npx commitlint --from=HEAD~1 | |
- name: ESLint | |
run: npm run lint | |
- name: Type check | |
run: npm run tsc | |
- name: Read package version | |
run: echo "VERSION=$(jq -r .version package.json)" >> $GITHUB_ENV | |
- name: Build | |
# run: npm run build -- --public-url https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }} | |
run: npm run build -- --public-url https://remarkablemark.org/${{ github.event.repository.name }} | |
- name: Deploy | |
if: github.ref_name == 'master' | |
uses: remarkablemark/gitploy-action@v1 | |
with: | |
directory: dist |