mirror of
https://github.com/kremalicious/astro-redirect-from.git
synced 2024-11-22 18:00:19 +01:00
78 lines
1.8 KiB
YAML
78 lines
1.8 KiB
YAML
name: 'CI'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
tags:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
node: ['18', '20']
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
cache: 'npm'
|
|
- run: npm ci
|
|
- run: npm test
|
|
- uses: actions/upload-artifact@v3
|
|
if: matrix.os == 'ubuntu-latest' && matrix.node == '18'
|
|
with:
|
|
name: coverage-${{ matrix.os }}-${{ matrix.node }}
|
|
path: coverage/
|
|
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
node: ['18', '20']
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
cache: 'npm'
|
|
- run: npm ci
|
|
- run: npm run build
|
|
|
|
coverage:
|
|
runs-on: ubuntu-latest
|
|
needs: [test]
|
|
if: ${{ success() && github.actor != 'dependabot[bot]' }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/download-artifact@v3
|
|
with:
|
|
name: coverage-ubuntu-latest-18
|
|
- uses: paambaati/codeclimate-action@v5.0.0
|
|
env:
|
|
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
|
|
publish:
|
|
needs: test
|
|
if: success() && startsWith(github.ref, 'refs/tags')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
- run: npm ci
|
|
- run: npm publish
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|