Skip to content

Change header text format #19

Change header text format

Change header text format #19

Workflow file for this run

# This workflow will do a clean install of node dependencies, 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: is-valid-es-identifier CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: latest
- run: pnpm install -r
- run: pnpm lint
- run: pnpm test
env:
CI: true