diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..4b2ce79 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build +on: + push: + branches-ignore: + - master +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: '20' + cache: 'yarn' + check-latest: true + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Run tests + run: yarn run test + - name: Lint code + run: yarn run lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..0c8b305 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,31 @@ +name: Release +on: + push: + branches: + - master +jobs: + release: + name: Release + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: '20' + cache: 'yarn' + check-latest: true + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Run tests + run: yarn run test + - name: Lint code + run: yarn run lint + - name: Release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run: yarn run semantic-release diff --git a/.gitignore b/.gitignore index ca51c86..9169665 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ node_modules *.log +.* +!.github !.husky !.gitignore !.npmignore