Skip to content

updated AS33915 from unsafe to safe #775

updated AS33915 from unsafe to safe

updated AS33915 from unsafe to safe #775

Workflow file for this run

name: CI
# Trigger workflow on push and pull requests.
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node 19.x
uses: actions/setup-node@v1
with:
node-version: '19.x'
- name: Install dependencies with a clean slate
run: npm ci
- name: Run tests
run: npm run test
- name: Lint markdown
run: npm run lint-markdown