Skip to content

docs(readme-bot): update wakatime stats #71

docs(readme-bot): update wakatime stats

docs(readme-bot): update wakatime stats #71

Workflow file for this run

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: πŸš€ Check project in different Node versions
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
check-node-build:
name: 🧩 Build and test code
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16, 18, 20 ]
steps:
- name: πŸ”€ Checkout code from repository
uses: actions/checkout@v4
- name: πŸ› οΈ Setup Node version ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: πŸ“¦ Install dependencies
run: npm install
- name: πŸ—οΈ Build project
run: npm run build --if-present
- name: πŸ§ͺ Test code
run: npm test --if-present