Merge branch 'master' into dependabot/npm_and_yarn/lerna-7.2.0 #285
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: Node.js CI | |
"on": | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Formatter | |
run: yarn format:ci | |
- name: Lint | |
run: yarn lint | |
- name: Build Packages | |
run: BASE_PATH=/react-icons-ng ./build-script.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: packages/_react-icons-ng*/*.tgz | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./packages/preview/out | |
if: contains(github.ref, 'tags/') | |
- name: Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "packages/_react-icons-ng*/*.tgz" | |
bodyFile: "packages/react-icons-ng/VERSIONS" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
prerelease: ${{ contains(github.ref, 'snapshot') }} | |
if: contains(github.ref, 'tags/') | |
- name: Publish NPM | |
if: contains(github.ref, 'tags/') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
npm publish packages/_react-icons-ng*/*.tgz | |
npm publish packages/_react-icons-ng-pack/*.tgz |