tldr/.github/workflows/ci.yml

56 lines
1.2 KiB
YAML
Raw Normal View History

2020-06-09 11:10:15 +01:00
name: CI
on: ['push', 'pull_request']
permissions:
2024-01-11 20:35:05 +00:00
contents: write # to upload assets to releases
2020-06-09 11:10:15 +01:00
jobs:
ci:
runs-on: ubuntu-latest
name: CI
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
2022-10-12 11:17:21 +01:00
- uses: actions/setup-python@v5
with:
python-version: '3.12'
2022-10-12 11:17:21 +01:00
cache: 'pip'
2020-06-09 11:10:15 +01:00
- uses: actions/setup-node@v4
with:
2022-10-12 11:17:21 +01:00
node-version: 'lts/*'
cache: 'npm'
2020-06-09 11:10:15 +01:00
2020-06-24 13:11:33 +01:00
- name: Set up PR environment
if: github.event.number != null
run: echo "PULL_REQUEST_ID=${{ github.event.number }}" >> $GITHUB_ENV
2020-06-24 13:11:33 +01:00
2020-06-09 11:10:15 +01:00
- name: Install npm dependencies
run: npm ci
2022-10-12 11:17:21 +01:00
- name: Install pip dependencies
run: pip install -r requirements.txt -r scripts/pdf/requirements.txt
2020-06-09 11:10:15 +01:00
- name: Test
run: npm test
- name: Build
run: bash scripts/build.sh
2020-11-27 09:27:13 +00:00
- name: Build PDF
2021-01-08 09:13:15 +00:00
if: github.repository == 'tldr-pages/tldr' && github.ref == 'refs/heads/main'
2022-10-12 11:17:21 +01:00
working-directory: ./scripts/pdf
run: bash build-pdf.sh
2020-11-27 09:27:13 +00:00
2020-06-09 11:10:15 +01:00
- name: Deploy
2021-01-08 09:13:15 +00:00
if: github.repository == 'tldr-pages/tldr' && github.ref == 'refs/heads/main'
2020-06-24 13:30:09 +01:00
run: bash scripts/deploy.sh
env:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
2024-01-11 20:35:05 +00:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}