Skip to content

Create new_config.yml #107

Create new_config.yml

Create new_config.yml #107

Workflow file for this run

# Build workflow
name: Build
on: [pull_request, workflow_dispatch]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: latest
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run lint