Return to using wildcard workspaces #66
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test website package | |
| on: | |
| workflow_dispatch: {} | |
| push: | |
| branches-ignore: | |
| - v2 | |
| - gh-pages | |
| paths: | |
| - "website/**" | |
| workflow_call: {} | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Test website package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20.x" | |
| - name: "Run tests" | |
| run: | | |
| npm clean-install | |
| npm run test | |
| working-directory: website |