Testing by listing directory contents #638
This file contains 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: Checks | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Fetch the full history instead of a shallow clone | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install buf | |
run: | | |
curl -sSL https://github.com/bufbuild/buf/releases/download/v1.47.2/buf-Linux-x86_64 -o /usr/local/bin/buf | |
chmod +x /usr/local/bin/buf | |
buf --version | |
- name: List files | |
run: ls -R | |
- run: yarn | |
- run: yarn lint:all | |
- run: yarn build:all | |
- run: yarn test:all |