Skip to content

Upgrade vitest

Upgrade vitest #50

Workflow file for this run

name: Workflow
on: [push]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
workflow:
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
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
- name: Setup config
if: github.ref == 'refs/heads/main'
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Release
if: github.ref == 'refs/heads/main'
run: npm run release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build website
if: github.ref == 'refs/heads/main'
run: npm run build:web
- name: Upload website artefacts
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v2
with:
path: './dist-website/'
- name: Deploy website
if: github.ref == 'refs/heads/main'
uses: actions/deploy-pages@v2