Skip to content

Migrate to Commits With Character #40

Migrate to Commits With Character

Migrate to Commits With Character #40

Workflow file for this run

name: Workflow
on: [push]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
doctor:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Type check
run: npm run typecheck -w tings
release:
if: github.ref == 'refs/heads/main'
needs: [doctor]
runs-on: ubuntu-latest
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
contents: write
pull-requests: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm ci
- name: Setup config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Release
run: cd package && npm run release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build website
run: npm run build -w website
- name: Upload website artefacts
uses: actions/upload-pages-artifact@v2
with:
path: './website/dist/'
- name: Deploy website
uses: actions/deploy-pages@v2