Skip to content

update repository information (#11) #17

update repository information (#11)

update repository information (#11) #17

Workflow file for this run

name: Snap-component PR validation
on:
push:
branches: ["main"]
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Run lint
run: yarn lint
- name: Run tests
run: yarn test
- name: Run build
run: yarn build