Skip to content

Commit

Permalink
πŸ‘©β€πŸ’» dx: Smoke test NPM postinstall hook.
Browse files Browse the repository at this point in the history
Fixes #827.
  • Loading branch information
make-github-pseudonymous-again committed May 14, 2024
1 parent c0d3134 commit e809d16
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci:postinstall.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: ci:postinstall

on:
push:
branches:
- main
pull_request:
merge_group:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:

test:
name: Continuous integration (test postinstall)
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4

- name: Install πŸ’Ύ
uses: ./.github/actions/install

- name: Test that `public/favicon.ico` is there πŸ€’
run: |
test -f public/favicon.ico
- name: Test that `public/@fontsource/roboto` is there πŸ€–
run: |
test -d public/@fontsource/roboto
- name: Test that `public/pdfjs-dist/build` is there πŸ“„
run: |
test -d public/pdfjs-dist/build

0 comments on commit e809d16

Please sign in to comment.