Merge adfaaed8c8d54f76c8a51adfc4a191094683cf82 into feature/240__sfca… #6698
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: Sa11y | |
on: [push] | |
jobs: | |
sa11y-jest: | |
env: | |
SA11Y_AUTO: 1 | |
SA11Y_CLEANUP: 1 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '14' | |
- name: Determine Node Version | |
id: node-version | |
run: | | |
echo "::set-output name=ver::$(node --version)" | |
- uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-${{ steps.node-version.outputs.ver }}-${{ hashFiles('package.json', 'yarn.lock') }} | |
- name: Install Packages | |
run: | | |
yarn install | |
- name: Run Jest Tests | |
run: | | |
npx lwc-jest --skipApiVersionCheck |