Skip to content

Format astro.config.ts #42

Format astro.config.ts

Format astro.config.ts #42

Workflow file for this run

name: Tests
env:
NODE_VERSION: 18
on:
push:
branches: master
pull_request:
branches: master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- name: Install dependencies
run: npm install
- name: Tests
run: npm run test