Updated readme to remove issues: write for Doc-230 (#63) #222
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on workflow: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/basic-validation.yml | |
# - Modified to use `yarn` instead of `npm` | |
# | |
# This workflow helps ensure that the code for the action we're going to deploy: | |
# 1. Does not have dependencies with critical or high severity vulnerabilities | |
# 2. Is well-formatted | |
# 3. Is linted | |
# 4. Successfully builds | |
# 5. Passes unit-tests | |
name: Basic validation | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
basic-validation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Setup Yarn | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --ignore-scripts | |
- name: Audit dependencies | |
run: yarn audit --audit-level=high --groups=dependencies | |
- name: Run prettier | |
run: yarn run format | |
- name: Run linter | |
run: yarn run lint | |
- name: Build | |
run: yarn run build | |
- name: Test | |
run: yarn run test:ci |