Skip to content

rename

rename #312

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
push:
branches-ignore:
- "*"
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "yarn"
- name: Install Dependencies
run: yarn install --frozen-lockfile # optional, --immutable
- name: Run Lint
run: |
yarn lint
- name: Run Build
run: |
yarn build
- name: Run Tests
run: |
yarn test
- name: Run Security Audit
run: |
yarn audit --groups dependencies