Skip to content

build(deps-dev): bump the typescript-eslint group with 2 updates (#241) #248

build(deps-dev): bump the typescript-eslint group with 2 updates (#241)

build(deps-dev): bump the typescript-eslint group with 2 updates (#241) #248

Workflow file for this run

name: deploy
permissions:
contents: write
on:
push:
branches:
- master
jobs:
deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package.json', './package.json') }}
id: cache
- name: Install πŸ“¦
if: steps.cache.outputs.cache-hit != 'true'
run: npm install --prefer-offline
- name: Build πŸ”§
run: npm run build -- --public-url https://remarkablemark.org/${{ github.event.repository.name }}
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: dist