Skip to content

Deploy with .nojekyll file so the _astro static assets folder is … #33

Deploy with .nojekyll file so the _astro static assets folder is …

Deploy with .nojekyll file so the _astro static assets folder is … #33

Workflow file for this run

name: Validate
on: push
jobs:
test:
name: Lint & Test
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Set up pnpm
uses: pnpm/action-setup@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
cache: 'pnpm'
- name: Install Dependencies
run: pnpm i
- name: Typecheck, eslint and prettier
run: pnpm lint
- name: Test
run: pnpm test