diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 395b69a..16bdab1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,4 +12,4 @@ jobs: - uses: actions/checkout@v3 - uses: ljharb/actions/node/install@main name: 'nvm install lts/* && npm install' - - run: npm run lint + - run: npm test diff --git a/README.md b/README.md index 5970476..fb7b3bb 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This repository contains documents, agendas, and notes for the ECMAScript - Secu ## Agenda -see [2023-09-13](meetings/notes/2023/2023-09-13.md) and [the backlog](meetings/notes/backlog.md) 👀 +see [2023-11-01](meetings/notes/2023/2023-11-01.md) and [the backlog](meetings/notes/backlog.md) 👀 ## Meetings diff --git a/meetings/notes/2023/2023-10-24.md b/meetings/notes/2023/2023-10-24.md index bb285f8..adab0ad 100644 --- a/meetings/notes/2023/2023-10-24.md +++ b/meetings/notes/2023/2023-10-24.md @@ -1,20 +1,3 @@ # TG3 - 2023-10-24 -## Folks - -| Name | GH Username | TLA | Affiliation | -| --------- | --------------- | --- | ------------ | -| Full Name | @githubUsername | FNE | organization | -| | | | | - -## Agenda - -> [!NOTE] -> See [backlog.md](/meetings/notes/backlog.md) for outstanding action items and agenda topics. - -| Topic | Presenter(s) | -| ---------------------------------------------------------------------------- | ---------------- | -| review of previous agenda and action items | | -| review of TG3 discussion from plenary (consensus items and pending actions) | Chris de Almeida | - -### review of previous agenda and action items +lack of quorum -- adjourned without any business diff --git a/meetings/notes/2023/2023-11-01.md b/meetings/notes/2023/2023-11-01.md new file mode 100644 index 0000000..915606b --- /dev/null +++ b/meetings/notes/2023/2023-11-01.md @@ -0,0 +1,20 @@ +# TG3 - 2023-10-24 + +## Folks + +| Name | GH Username | TLA | Affiliation | +| --------- | --------------- | --- | ------------ | +| Full Name | @githubUsername | FNE | organization | +| | | | | + +## Agenda + +> [!NOTE] +> See [backlog.md](backlog.md) for outstanding action items and agenda topics. + +| Topic | Presenter(s) | +| --------------------------------------------------------------------------- | ---------------- | +| review of previous agenda and action items | | +| review of TG3 discussion from plenary (consensus items and pending actions) | Chris de Almeida | + +### review of previous agenda and action items diff --git a/meetings/notes/2023/2023-11-28.md b/meetings/notes/2023/2023-11-28.md new file mode 100644 index 0000000..54ac2ce --- /dev/null +++ b/meetings/notes/2023/2023-11-28.md @@ -0,0 +1,20 @@ +# TG3 - YYYY-MM-DD + +## Folks + +| Name | GH Username | TLA | Affiliation | +| --------- | --------------- | --- | ------------ | +| Full Name | @githubUsername | FNE | organization | +| | | | | + +## Agenda + +> [!NOTE] +> See [backlog.md](backlog.md) for outstanding action items and agenda topics. + +| Topic | Presenter(s) | +| ------------------------------------------ | ------------ | +| review of previous agenda and action items | | +| | | + +### review of previous agenda and action items diff --git a/package.json b/package.json index fbd30ec..8a7d245 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,8 @@ "private": true, "scripts": { "lint": "markdownlint-cli2 '**/*.md' '!node_modules'", - "lint:fix": "markdownlint-cli2-fix '**/*.md' '!node_modules'" + "lint:fix": "markdownlint-cli2-fix '**/*.md' '!node_modules'", + "test": "npm run lint" }, "devDependencies": { "markdownlint-cli2": "^0.7.1"