feat: update decentraland-ui2 v0.11.3 (#961) #1048
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: Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
bun: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Installing | |
run: bun install | |
continue-on-error: true | |
- name: Testing | |
run: bun test | |
continue-on-error: true | |
node: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # to be able to publish a GitHub release | |
issues: write # to be able to comment on released issues | |
pull-requests: write # to be able to comment on released pull requests | |
id-token: write # to enable use of OIDC for npm provenance | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Reconfigure git to use HTTP authentication | |
run: > | |
git config --global url."https://github.com/".insteadOf "ssh://[email protected]/" | |
- name: node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.17.0 | |
registry-url: https://registry.npmjs.org/ | |
cache: 'npm' | |
- name: installing npm | |
run: npm i -g npm@10 | |
- name: installing | |
run: npm ci --audit false --fund false | |
- name: linters | |
uses: wearerequired/lint-action@v1 | |
with: | |
eslint: true | |
eslint_extensions: ts,tsx,js,jsx | |
eslint_dir: src/ | |
prettier: true | |
prettier_extensions: ts,tsx,js,jsx,json,md,mdx,css | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
continue_on_error: true | |
continue-on-error: true | |
- name: testing | |
run: npm test -- --coverage | |
- name: coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: building | |
run: npm run build | |
- name: releasing | |
run: npm run semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |