feat: add /voidhours command #56
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 | |
on: push | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- name: Install Node Dependencies | |
run: npm ci | |
env: | |
CI: TRUE | |
- name: Save Code Linting Report JSON | |
# npm script for ESLint | |
# eslint --output-file eslint_report.json --format json src | |
# See https://eslint.org/docs/user-guide/command-line-interface#options | |
run: npm run lint:report | |
# Continue to the next step even if this fails | |
continue-on-error: true | |
- name: Annotate Code Linting Results | |
uses: ataylorme/eslint-annotate-action@v2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
report-json: "eslint_report.json" | |
- name: Upload ESLint report | |
uses: actions/upload-artifact@v2 | |
with: | |
name: eslint_report.json | |
path: eslint_report.json | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- name: Install Node Dependencies | |
run: npm ci | |
env: | |
CI: TRUE | |
- name: Rename secret files | |
run: | | |
for i in secrets/*.example.* | |
do | |
mv "$i" "`echo $i | sed 's/.example//'`" | |
done | |
- name: Build | |
run: npm run build | |