name: Build on: push: branches: - "*" jobs: build: name: Build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '14.15.1' - uses: ueokande/setup-firefox@latest with: firefox-version: 78.3.0esr - uses: ueokande/setup-geckodriver@latest with: firefox-version: 0.28.0 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - uses: actions/cache@v2 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - run: yarn install - run: yarn lint - run: yarn test - run: yarn package test-e2e: name: E2E Test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '14.15.1' - uses: ueokande/setup-firefox@latest with: firefox-version: 78.3.0esr - uses: ueokande/setup-geckodriver@latest with: firefox-version: 0.28.0 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - uses: actions/cache@v2 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - run: yarn install - run: yarn build - run: | geckodriver & yarn test:e2e