Merge pull request #69 from remarkablemark/dependabot/github_actions/… #188
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@v3 | |
with: | |
node-version: 18 | |
# - name: Cache dependencies | |
# uses: actions/cache@v3 | |
# with: | |
# path: | | |
# node_modules | |
# */*/node_modules | |
# key: ${{ runner.os }}-${{ hashFiles('**/package.json', './package.json') }} | |
# id: cache | |
- 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 == 'refs/heads/master' | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: dist |