Skip to content

chore(deps-dev): bump @commitlint/config-conventional from 17.6.7 to 17.7.0 #1885

chore(deps-dev): bump @commitlint/config-conventional from 17.6.7 to 17.7.0

chore(deps-dev): bump @commitlint/config-conventional from 17.6.7 to 17.7.0 #1885

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm install --prefer-offline
- name: Lint commit message
run: npx commitlint --from=HEAD~1
- name: Run ESLint
run: npm run lint
- name: Type check
run: npm run lint:tsc
- name: Read package version
run: echo "VERSION=$(jq -r .version package.json)" >> $GITHUB_ENV
- name: Build
run: npm run build -- --public-url https://remarkablegames.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