Skip to content

Commit

Permalink
FF-2524 basic script running in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
greghuels committed Jul 2, 2024
1 parent e223b48 commit 97ccfa3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/verify-package.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail

echo 'hello world!'

npm --version
17 changes: 17 additions & 0 deletions .github/workflows/verify-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Verify Package
on:
pull_request:
paths:
- '**/*'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: yarn install
- run: yarn test
- run: "${GITHUB_WORKSPACE}/.github/verify-package.sh"

0 comments on commit 97ccfa3

Please sign in to comment.