Skip to content

env fix

env fix #4

Workflow file for this run

name: Check
on:
workflow_dispatch:
push:
branches: [main]
jobs:
app:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Run check
run: npm run check