Update list-files workflow #3
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
| on: | |
| push: | |
| workflow_call: | |
| workflow_dispatch: | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Change directory | |
| run: cd vscode-rufo | |
| - name: Install dependencies | |
| run: npm i | |
| - name: Run pre-test script | |
| run: npm run pretest | |
| - name: Run tests | |
| run: npm run test |