fix sortRecords file #494
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Svelte Check, & Unit Test Push | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
unit_test: | |
name: Svelte Check & Unit Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.6.0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Svelte Check Site | |
run: pnpm check | |
- name: Run Vitest Unit Tests | |
run: pnpm test | |
- name: Slack Unit Test Results Notification | |
uses: 8398a7/action-slack@v3 # https://action-slack.netlify.app/ | |
if: failure() | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
with: | |
status: ${{ job.status }} | |
fields: workflow,repo,message,commit,author,action,ref # selectable (default: repo,message) |