Compare commits

...

5 Commits

Author SHA1 Message Date
f81cd40fdc feat: Add table icon (#1138) 2022-03-29 16:37:37 -07:00
a7e39d665f Update GITHUB_TOKEN permissions 2022-03-29 16:30:25 -07:00
7da2950653 Remove GITHUB_TOKEN env variable 2022-03-29 16:23:24 -07:00
d657e8aa56 Add env variables 2022-03-29 16:15:31 -07:00
508003d9d3 chore: Add ci.yml workflow 2022-03-29 16:07:02 -07:00
2 changed files with 35 additions and 0 deletions

22
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
- run: npm ci
- run: npm run all
- name: Release
if: github.ref_name == 'master'
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

13
icons/table.svg Normal file
View File

@ -0,0 +1,13 @@
<svg
width="24"
height="24"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18" />
</svg>

After

Width:  |  Height:  |  Size: 329 B