Skip to content

Lock file maintenance (#404) #1529

Lock file maintenance (#404)

Lock file maintenance (#404) #1529

Workflow file for this run

name: Lint & build & test
on:
- push
- pull_request
jobs:
lint_build_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: yarn install
run: yarn install
- name: lint
run: yarn lint
- name: build
run: yarn build
- name: test
run: yarn test