Merge pull request #697 from beatrizsmerino/dependabot/npm_and_yarn/v… #380
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
# 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/[email protected] | |
- name: 🛠️ Setup Node version ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
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 |