๐Ÿ— use yarn

This commit is contained in:
marocchino 2021-09-01 02:43:12 +09:00
parent 46599ab661
commit 41794c1850
No known key found for this signature in database
GPG key ID: AFF521DBDB122570
6 changed files with 3903 additions and 6506 deletions

View file

@ -9,8 +9,8 @@ jobs:
contents: write
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: npm run build
- run: yarn install
- run: yarn build
- uses: ./
with:
header: FromPR

View file

@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: yarn install
- run: |
set -o pipefail
mkdir -p ./pr
echo ${{ github.event.number }} | tee ./pr/number
npm run all |& tee ./pr/all_result
yarn all |& tee ./pr/all_result
- uses: actions/upload-artifact@v2
if: ${{ github.event_name == 'pull_request' && (success() || failure()) }}
with: