Skip to content

Commit

Permalink
ci(github): finished first of the nodejs workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert Hernandez Pellicer committed Feb 12, 2024
1 parent d2340b5 commit 1dd3ece
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,17 @@ jobs:
run:
runs-on: ubuntu-latest
steps:
- name: 'Hello world 🚀'
run: echo "Hello world!"
- name: 'Checkout 🛬'
uses: actions/checkout@v4
- name: 'Setup node ⚙️'
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: 'Install dependencies 📥'
run: npm ci
- name: 'Build typescript 📦'
run: npm run build && find dist/main.js
- name: 'Lint code 💅🏻'
run: npm run lint
- name: 'Run test ✅'
run: npm run test

0 comments on commit 1dd3ece

Please sign in to comment.