astro-ghostcms/.pnpm-store/v3/files/75/d8d71eeb9fa0bdb2735b12ca218...

24 lines
483 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
name: ci
'on':
- push
- pull_request
jobs:
test:
name: Node ${{ matrix.node }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
node:
- '14'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run build --if-present
- run: npm test