This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
fix: updated toolkit to use .module.scss pathing #148
Workflow file for this run
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: checks | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
cache: yarn | |
node-version-file: .nvmrc | |
registry-url: "https://npm.pkg.github.com/" | |
- run: yarn install --frozen-lockfile --ignore-scripts | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: yarn build | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
cache: yarn | |
node-version-file: .nvmrc | |
registry-url: "https://npm.pkg.github.com/" | |
- run: yarn install --frozen-lockfile --ignore-scripts | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: yarn lint-ci | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
cache: yarn | |
node-version-file: .nvmrc | |
registry-url: "https://npm.pkg.github.com/" | |
- run: yarn install --frozen-lockfile --ignore-scripts | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: yarn test --ci |