Skip to content

deipanema is testing out GitHub Actions 🚀 #6

deipanema is testing out GitHub Actions 🚀

deipanema is testing out GitHub Actions 🚀 #6

name: GitHub Actions
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
actions: write
contents: read
jobs:
main:
strategy:
fail-fast: false
matrix:
node: [18, 20]
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: ▶️ Run build
run: npm run build
- name: ▶️ Run test
run: npm run test