Skip to content

setup yarn for github actions #1748

setup yarn for github actions

setup yarn for github actions #1748

Workflow file for this run

name: Test javascript
on: push
jobs:
js-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
- name: Setup yarn
run: |

Check failure on line 16 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
echo "FONTAWESOME_NPM_AUTH_TOKEN=${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}" > .env
- name: Install dependencies
run: yarn install
- name: Test
run: yarn test