Skip to content

Modernize GitHub actions configuration #36

Modernize GitHub actions configuration

Modernize GitHub actions configuration #36

Workflow file for this run

name: Main CI
on:
push:
branches:
- master
tags:
- v[0-9]+.[0-9]+.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
pull_request:
branches:
- master
jobs:
lint:
name: Lint code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
- run: yarn install --frozen-lockfile --prefer-offline
- run: yarn lint
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
needs:
- lint
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@4.0.0
with:
branch: gh-pages
folder: website