Skip to content

chore(deps): Bump js-yaml from 4.1.0 to 4.1.1 in the npm_and_yarn gro… #36

chore(deps): Bump js-yaml from 4.1.0 to 4.1.1 in the npm_and_yarn gro…

chore(deps): Bump js-yaml from 4.1.0 to 4.1.1 in the npm_and_yarn gro… #36

Workflow file for this run

name: Build & Lint
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build-lint:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint:check
- name: Add build summary
run: |
echo "## Tutorial build & lint result" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY