Skip to content

build(deps-dev): bump @typescript-eslint/parser from 6.1.0 to 6.2.0 #858

build(deps-dev): bump @typescript-eslint/parser from 6.1.0 to 6.2.0

build(deps-dev): bump @typescript-eslint/parser from 6.1.0 to 6.2.0 #858

Workflow file for this run

name: build
on: [push, pull_request]
permissions:
contents: write
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: Set environment variables
run: |
echo "VERSION=$(jq -r .version package.json)" >> $GITHUB_ENV
echo "URL=$(jq -r .homepage package.json)" >> $GITHUB_ENV
- name: Build
run: npm run build -- --public-url ${{ env.URL }}
env:
GOOGLE_ANALYTICS_ID: ${{ secrets.GOOGLE_ANALYTICS_ID }}
- name: Deploy
if: github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: dist