Remove cache anyway, not available in the caller repo #11
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 init | |
on: | |
push: | |
branches: ["*"] | |
paths: | |
- init/** | |
- .github/workflows/init.yml | |
pull_request: | |
branches: ["*"] | |
paths: | |
- init/** | |
- .github/workflows/init.yml | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: Prepare full scan | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Install | |
shell: bash | |
run: | | |
cd init | |
yarn | |
- shell: bash | |
run: | | |
cd init | |
yarn test |