Skip to content

Log fails

Log fails #713

Workflow file for this run

name: main
on:
push:
branches-ignore:
- gh-pages
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Formatted
run: npm run formatted
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
force_orphan: true
publish_dir: ./dist