diff --git a/.github/workflows/livestream.yml b/.github/workflows/livestream.yml index d097d2c..18ebf32 100644 --- a/.github/workflows/livestream.yml +++ b/.github/workflows/livestream.yml @@ -7,5 +7,16 @@ jobs: Log: runs-on: ubuntu-latest steps: - - name: Console logs some cool s**t - run: echo "Hello, World!" + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Install dependencies + run: npm install + + - name: Lint code + run: npm run lint