Skip to content

Blog: A quick glance at the React 19 Beta feature set #23

Blog: A quick glance at the React 19 Beta feature set

Blog: A quick glance at the React 19 Beta feature set #23

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
pull_request:
branches: [ main ]
jobs:
rss:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run generate-rss
- name: Git Auto Commit
uses: stefanzweifel/git-auto-commit-action@v5.0.1
with:
# Commit message
commit_message: RSS feeds updated
push_options: '--force'
# lighthouse:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# node-version: [16.x]
# # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
# steps:
# - name: Lighthouse Check
# # You may pin to the exact commit or the version.
# # uses: foo-software/lighthouse-check-action@e9777a4dd4c8854778c7e8a6eea8cf4e84f28a3e
# uses: foo-software/lighthouse-check-action@v7.1.0
# with:
# # Legacy field (use "gitHubAccessToken"): Access token of a user to post PR comments.
# accessToken: ${{ secrets.GITHUB_TOKEN }}