build(deps): bump tar-fs from 2.1.3 to 2.1.4 #183
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: Check the source code | |
| on: | |
| pull_request: | |
| jobs: | |
| test: | |
| name: Check the source code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '20' | |
| # unable to use yarn in actions/setup-node@v3 https://github.com/actions/setup-node/issues/182#issuecomment-966885975 | |
| - name: Install Yarn | |
| run: npm install -g yarn | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '20' | |
| cache: yarn | |
| - name: Install packages | |
| run: yarn | |
| - name: Lint | |
| run: yarn lint | |
| - name: Jest | |
| run: yarn jest |