ci: up node version in CI #25
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: Test | |
on: | |
push: | |
jobs: | |
full: | |
runs-on: ubuntu-latest | |
name: OS ubuntu-latest Node.js 20 | |
steps: | |
- name: Install Chrome | |
uses: browser-actions/setup-chrome@latest | |
- name: Checkout the repository | |
uses: actions/checkout@v2 | |
- name: Install Node.js 20 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Run unit tests | |
run: yarn unit | |
env: | |
FORCE_COLOR: 2 | |
- name: Check dependencies with sdc-check | |
run: yarn sdc-check |