Update operators.csv - add AS 212238 Datacamp Limited #825
Workflow file for this run
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
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 |