Merge pull request #8 from thednp/dependabot/npm_and_yarn/babel/trave… #79
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: ci | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
name: Test on Node 18 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: pnpm/[email protected] | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Install Cypress | |
run: npx cypress install | |
- name: Build | |
run: pnpm build # includes lint | |
- name: Cypress Test | |
run: pnpm test | |
- name: Upload coverage report on Node 18 to coveralls.io... | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |