diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 75fa1fc..c3ff839 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -1,8 +1,16 @@ -steps: -- uses: actions/checkout@v4 -- uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' -- run: npm install -- run: npm run +name: Node.js CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' + - run: npm install + - run: npm run