Merge pull request #223 from nuxt-modules/feat/3.0.0 #479
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: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [18] | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: checkout | |
uses: actions/checkout@master | |
- name: cache node_modules | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }} | |
- name: Install dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: yarn | |
- name: Lint | |
run: yarn lint | |
- name: Prepare | |
run: yarn dev:prepare | |
# - name: Test | |
# run: yarn test | |
# - name: Coverage | |
# run: yarn codecov | |
# env: | |
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |