Skip to content

Update node.js.yml

Update node.js.yml #4

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: CI GitHub Pages
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
name: Linting 🔍
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Linting
uses: actions/setup-node@v3
with: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
build:
name: Building
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout 🛎️
- uses: actions/checkout@v4
- name: Build with Node.js ${{ matrix.node-version }} 🔨
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run build
deploy:
name: Deploying 🚀
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploying 🚀
- uses: actions/deploy-pages@v1